Skip to content

Instantly share code, notes, and snippets.

@isaklafleur
Last active April 20, 2017 11:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save isaklafleur/458bac864ae8dcf387586d3ea1e8b701 to your computer and use it in GitHub Desktop.
Save isaklafleur/458bac864ae8dcf387586d3ea1e8b701 to your computer and use it in GitHub Desktop.
My NPM Cheat Sheet
Full documentation: https://docs.npmjs.com/getting-started/
// Listing globally installed NPM packages and version
npm list -g --depth=0
// Global packages can be uninstalled with
npm uninstall -g <package>
ex. npm uninstall -g jshint
// Clean the npm cache
npm cache clean
npm cache clean ~/.npm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment