Skip to content

Instantly share code, notes, and snippets.

@tonis2
Created July 30, 2015 14:47
Show Gist options
  • Save tonis2/23ba5a12af009f25152a to your computer and use it in GitHub Desktop.
Save tonis2/23ba5a12af009f25152a to your computer and use it in GitHub Desktop.
Uninstall all npm modules
npm ls | grep -v 'npm@' | awk '/@/ {print $2}' | awk -F@ '{print $1}' | xargs npm rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment