Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save isaobushi/0f47bd001f9ba38b61d690f970a57bef to your computer and use it in GitHub Desktop.
Save isaobushi/0f47bd001f9ba38b61d690f970a57bef to your computer and use it in GitHub Desktop.
Check Memory of/and Clean node_modules
**Check how much memory
find . -name "node_modules" -type d -prune | xargs du -chs
- example output:
252M ./jotto-hooks/node_modules
410M ./tempBin/refugee-job-search-frontend-user/node_modules
415M ./Magic-League/node_modules
72M ./legal-block-backend/node_modules
17G total
DELETE all node_modules
find . -name "node_modules" -type d -prune -exec rm -rf '{}' +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment