Skip to content

Instantly share code, notes, and snippets.

@verticalgrain
Last active November 11, 2017 22:07
Show Gist options
  • Save verticalgrain/99ae6497978cde1f91c9ff3265fb32ff to your computer and use it in GitHub Desktop.
Save verticalgrain/99ae6497978cde1f91c9ff3265fb32ff to your computer and use it in GitHub Desktop.
NPM Cheat Sheet
// List all packages
npm list
// List specific package
npm list grunt
// Update a package
npm update grunt
// Update to a specific version (older or newer)
npm install [email protected]
// Install package globally
npm install -g grunt
// Install when having permission issues
npm install --unsafe-perm packagename
// Update to latest version of NPM
npm install -g npm@latest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment