Skip to content

Instantly share code, notes, and snippets.

@csbailey5t
Created February 26, 2015 19:39
Show Gist options
  • Save csbailey5t/ac3c471d5257cfc43a40 to your computer and use it in GitHub Desktop.
Save csbailey5t/ac3c471d5257cfc43a40 to your computer and use it in GitHub Desktop.
Bash to uninstall all local node_modules; run from directory containing package.json
for package in `ls node_modules/`; do npm uninstall $package; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment