Skip to content

Instantly share code, notes, and snippets.

@deneuv34
Last active February 16, 2023 09:30
Show Gist options
  • Select an option

  • Save deneuv34/55a78bc54776c0868d497ad79c7074dc to your computer and use it in GitHub Desktop.

Select an option

Save deneuv34/55a78bc54776c0868d497ad79c7074dc to your computer and use it in GitHub Desktop.
node_modules cleaner

This command is find and remove all node_modules on ./ path

$ find . -name node_modules -type d -print0 | xargs -0 rm -rf --
@deneuv34
Copy link
Author

Another alternative way:

npx rimraf ./**/node_modules

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment