Skip to content

Instantly share code, notes, and snippets.

@akhawaja
Created November 1, 2015 22:13
Show Gist options
  • Save akhawaja/ed2ed96ebdb7f5c38574 to your computer and use it in GitHub Desktop.
Save akhawaja/ed2ed96ebdb7f5c38574 to your computer and use it in GitHub Desktop.
Uninstall NPM modules globally including NPM itself
#!/usr/bin/env bash
npm ls -gp | awk -F/ '/node_modules/ && !/node_modules.*node_modules/ {print $NF}' | xargs npm -g rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment