Node Global Cache
C:\Users\ManhNguyen\AppData\Roaming\npm-cache\
Top 10 Mistakes Node.js Developers Make
https://www.airpair.com/node.js/posts/top-10-mistakes-node-developers-make
The Top 10 Most Common Mistakes That Node.js Developers Make
https://www.toptal.com/nodejs/top-10-common-nodejs-developer-mistakes
Install packages
npm install -g jshint
npm update -g jshint
Update local packages
npm update
npm outdated
Update global packages
npm update -g
npm outdated -g --depth=0
Check update
npm install -g npm-check-updates
Clean Cache
npm cache clean --force
NodeJS
rm -rf node_modules
npm install
npm rebuild node-sass