Skip to content

Instantly share code, notes, and snippets.

@tgmerritt
Created July 27, 2022 20:25
Show Gist options
  • Save tgmerritt/d87ec15daf18df698f972fc2dcb92c28 to your computer and use it in GitHub Desktop.
Save tgmerritt/d87ec15daf18df698f972fc2dcb92c28 to your computer and use it in GitHub Desktop.
Delete all node_modules directories in all projects

List all node_modules and the cumulative size (Mac OS / Linux)

find . -name "node_modules" -type d -prune | xargs du -chs

Destroy all

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