oinume journal

Scratchpad of what I learned

3 things I do after installing Nodejs

Installing latest npm

$ npm install -g npm@latest

Disabling npm’s progress bar

Disabling progress bar for faster npm install.

$ npm set progress=false

See Progress bar noticeably slows down npm install · Issue #11283 · npm/npm

Installing npm-check

npm-check checks outdated, incorrect, and unused dependencies.

$ npm install -g npm-check

www.npmjs.com