matyuschenko
9/21/2016 - 8:01 PM

npm

npm

npm init --yes
npm i -g gulp  # global install
npm list -g --depth=0  # list installed modules
npm config get prefix  # place where global modules go
npm i jquery -S  # install and save to manifest
npm i gulp -D  # install and save to devDependencies

# quick start
npm link gulp browser-sync  # создает символические ссылки, как будто установилось
npm init --yes