Skip to content

Instantly share code, notes, and snippets.

@matkl
Created July 2, 2016 00:07
Show Gist options
  • Save matkl/413db1a282f5622607c8c4e08fca3673 to your computer and use it in GitHub Desktop.
Save matkl/413db1a282f5622607c8c4e08fca3673 to your computer and use it in GitHub Desktop.
Delete ALL node_modules recursively
npm install -g rimraf
find . -name "node_modules" -exec rimraf {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment