Skip to content

Instantly share code, notes, and snippets.

@IcodeNet
Forked from othiym23/npm-upgrade-bleeding.sh
Created November 5, 2020 07:58
Show Gist options
  • Save IcodeNet/3ecf5b456608397d60e92056ebab4ffe to your computer and use it in GitHub Desktop.
Save IcodeNet/3ecf5b456608397d60e92056ebab4ffe to your computer and use it in GitHub Desktop.
a safe way to upgrade all of your globally-installed npm packages
#!/bin/sh
set -e
set -x
for package in $(npm -g outdated --parseable --depth=0 | cut -d: -f3)
do
npm -g install "$package"
done
#!/bin/sh
set -e
set -x
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