Skip to content

Instantly share code, notes, and snippets.

@doctyper
Created September 13, 2012 22:50
Show Gist options
  • Save doctyper/3718320 to your computer and use it in GitHub Desktop.
Save doctyper/3718320 to your computer and use it in GitHub Desktop.
Uninstall all NPM modules
npm list -g | awk '/@/ {print $2}' | grep '@' | awk -F@ '{print $1}' | xargs npm -g uninstall
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment