npm -v (or --version)
npm help npm
npm init npm init -y (or --yes)
npm config set init-author-name "YOUR NAME" npm set init-license "MIT"
npm config get init-author-name npm get init-license
npm config delete init-author-name npm delete init-license
npm install lodash --save (or npm install --save lodash) npm install moment --save npm install gulp gulp-sass --save-dev
npm install npm install --production
npm uninstall gulp-sass --save-dev npm remove gulp --save-dev
#INSTALL CERTAIN VERSIONS npm install [email protected] --save
npm update lodash --save
npm install -g nodemon npm install -g live-server
nodemon
npm root -g
npm remove -g nodemon
npm list npm list --depth 0 npm list --depth 1
npm install live-server --save-dev
"scripts": { "start": "node index.js", "dev": "live-server" },