Skip to content

Instantly share code, notes, and snippets.

@obedparla
Created November 9, 2021 14:19
Show Gist options
  • Save obedparla/c126e38c83e538b32b1383c0fe580c28 to your computer and use it in GitHub Desktop.
Save obedparla/c126e38c83e538b32b1383c0fe580c28 to your computer and use it in GitHub Desktop.
# Find how much all your node modules weigh
find . -name "node_modules" -type d -prune -print | xargs du -chs
# To delete them AT YOUR OWN RISK:
find . -name 'node_modules' -type d -prune -print -exec rm -rf '{}' \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment