Skip to content

Instantly share code, notes, and snippets.

@thinkingcap
Created December 28, 2014 06:29
Show Gist options
  • Save thinkingcap/855ebc7618909321a5e7 to your computer and use it in GitHub Desktop.
Save thinkingcap/855ebc7618909321a5e7 to your computer and use it in GitHub Desktop.
List all NPM global packages
npm ls -gp | awk -F/ '/node_modules/ && !/node_modules.*node_modules/ {print $NF}'
-- Delete all
npm ls -gp | awk -F/ '/node_modules/ && !/node_modules.*node_modules/ {print $NF}' | xargs npm -g rm
-- Alt
npm ls -gp --depth=0 | awk -F/node_modules/ '{print $2}' | grep -vE '^(npm|)$' | xargs npm -g rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment