Last active
April 20, 2017 11:52
-
-
Save isaklafleur/458bac864ae8dcf387586d3ea1e8b701 to your computer and use it in GitHub Desktop.
My NPM Cheat Sheet
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
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