Skip to content

Instantly share code, notes, and snippets.

@stefanosandes
Created April 27, 2021 15:55
Show Gist options
  • Save stefanosandes/526a39a257127d9e836eca381807cf13 to your computer and use it in GitHub Desktop.
Save stefanosandes/526a39a257127d9e836eca381807cf13 to your computer and use it in GitHub Desktop.
Clean all node_modules
# Report all node_modules location and used space
find . -name "node_modules" -type d -prune | xargs du -chs
# Remove 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