Node npm intro - illyfrancis/scribble GitHub Wiki
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