Skip to content

Instantly share code, notes, and snippets.

@kkoziarski
Last active February 22, 2017 19:46
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 kkoziarski/4c00e49fe6d4b84eb7616d7eba8251ed to your computer and use it in GitHub Desktop.
Save kkoziarski/4c00e49fe6d4b84eb7616d7eba8251ed to your computer and use it in GitHub Desktop.
Listing globally installed NPM packages
npm list -g --depth=0
+-- angular-cli@1.0.0-beta.22-1
+-- bower@1.8.0
+-- generator-aspnet@0.2.5
+-- generator-code@1.1.5
+-- grunt-cli@1.2.0
+-- gulp@3.9.1
+-- jspm@0.16.45
+-- npm@4.0.5
+-- typescript@2.1.4
+-- typings@1.3.3
+-- webpack@1.14.0
`-- yo@1.8.5

To find out which packages need to be updated, you can use npm outdated -g --depth=0

To update all global packages, you can use npm update -g

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment