Skip to content

Instantly share code, notes, and snippets.

@bitbonsai
Created June 2, 2018 07:09
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 bitbonsai/7eba29810094c16c9598013c2c8fb42a to your computer and use it in GitHub Desktop.
Save bitbonsai/7eba29810094c16c9598013c2c8fb42a to your computer and use it in GitHub Desktop.
Update all npm global packages
function npm_update() {
for package in $(npm -g outdated --parseable --depth=0 | cut -d: -f2)
do
npm -g install "$package"
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment