Skip to content

Instantly share code, notes, and snippets.

@bhumit070
Last active April 21, 2023 06:14
Show Gist options
  • Save bhumit070/81c2dce053aa4c83ea7af93f0a0fe7f1 to your computer and use it in GitHub Desktop.
Save bhumit070/81c2dce053aa4c83ea7af93f0a0fe7f1 to your computer and use it in GitHub Desktop.
Delete All node_modules in directory
find . -name "node_modules" -type d -prune | xargs du -chs # to check how much space node_modules is taking
find . -name "node_modules" -type d -prune | xargs rm -rf # to remove node_modules
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment