Skip to content

Instantly share code, notes, and snippets.

@HR
Last active March 30, 2018 21:46
Show Gist options
  • Save HR/2144dd3432840bcabfd27e47ee36d475 to your computer and use it in GitHub Desktop.
Save HR/2144dd3432840bcabfd27e47ee36d475 to your computer and use it in GitHub Desktop.
NPM update all global packages to latest version
#!/bin/sh
set -e
set -x
for package in $(npm -g outdated --parseable --depth=0 | cut -d: -f2 | sed 's/@.*//g')
do
npm -g install "$package@latest"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment