NPM Cache and Clean
Managing NPM cache
Cache Commands
npm cache verify # verify cache integrity
npm cache clean --force # clear cache
Cache Info
npm config get cache # show cache directory
Clear node_modules
rm -rf node_modules # delete node_modules (Unix)
rmdir /s node_modules # delete node_modules (Windows)