Skip to content

Instantly share code, notes, and snippets.

@leahpjoyce
Last active October 3, 2018 19:43
Show Gist options
  • Save leahpjoyce/ba56263c2af0cdc8b94b0b5ec43a4e2b to your computer and use it in GitHub Desktop.
Save leahpjoyce/ba56263c2af0cdc8b94b0b5ec43a4e2b to your computer and use it in GitHub Desktop.
How to uninstall global packages
To check global packages
* npm ls -g --depth=0
To uninstall a global package,type:
* npm uninstall -g <package>
To uninstall a package called jshint, you would type:
* npm uninstall -g jshint
Source: https://docs.npmjs.com/getting-started/uninstalling-global-packages
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment