Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save asmattic/34dc81643641cf7f530e8de0daa00ac2 to your computer and use it in GitHub Desktop.
Save asmattic/34dc81643641cf7f530e8de0daa00ac2 to your computer and use it in GitHub Desktop.
Recursively remove node_module directories from a parent folder
# SOURCE: https://rtmccormick.com/2018/01/10/clear-node-modules-folders-recursively-mac-linux/
find . -name "node_modules" -type d -prune -exec rm -rf '{}' +
# To recursively restore node_modules (DO NOT USE - STILL IN PROGRESS)
find . -name "package.json" -type f -prune -exec npm i '{}' +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment