Skip to content

Instantly share code, notes, and snippets.

@jdeagle
Forked from doctyper/gist:3718320
Created September 16, 2012 23:47
Show Gist options
  • Save jdeagle/3734855 to your computer and use it in GitHub Desktop.
Save jdeagle/3734855 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