Created
November 1, 2015 22:13
-
-
Save akhawaja/ed2ed96ebdb7f5c38574 to your computer and use it in GitHub Desktop.
Uninstall NPM modules globally including NPM itself
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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