-
Notifications
You must be signed in to change notification settings - Fork 0
Node npm intro
illyfrancis edited this page Feb 28, 2014
·
9 revisions
http://tobyho.com/2012/02/09/tour-of-npm/
-
npm init- createspackage.json -
npm install gulp -g- installs globally -
npm install backbone --save- installs locally to the project and saved todependenciesin 'package.json' -
npm install gulp --save-dev- installs locally to the project and saved todevDependenciesin thepackage.jsonfile npm update <package>-
npm uninstall <module>or with option--save|--save-dev|--save-optionaletcnpm rm
-
npm list- list installed package