Skip to content

Instantly share code, notes, and snippets.

Created November 7, 2013 12:08
Show Gist options
  • Save anonymous/7353593 to your computer and use it in GitHub Desktop.
Save anonymous/7353593 to your computer and use it in GitHub Desktop.
# usage
# `node-upgrade` to upgrade to the latest stable version
# `node-upgrade <node-version` to upgrade to specific version
# eg. `node-upgrade 0.10.17`
function node-upgrade {
if [[ -z $1 ]]; then
sudo n stable
else
sudo n ${1}
fi
echo 'Current version of node.js is:'
node -v
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment