Skip to content

Instantly share code, notes, and snippets.

@syammohanmp
Last active November 15, 2016 06:59
Show Gist options
  • Save syammohanmp/1cfb3e226444e9162390c55c0584200d to your computer and use it in GitHub Desktop.
Save syammohanmp/1cfb3e226444e9162390c55c0584200d to your computer and use it in GitHub Desktop.
Upgrade Node.js via NPM

Use n module from npm in order to upgrade node

sudo npm cache clean -f
sudo npm install -g n
sudo n stable
sudo ln -sf /usr/local/n/versions/node//bin/node /usr/bin/node

To upgrade to latest version (and not current stable) version, you can use

sudo n latest

To undo:

sudo apt-get install --reinstall nodejs-legacy     # fix /usr/bin/node
sudo n rm 6.0.0     # replace number with version of Node that was installed
sudo npm uninstall -g n

Found in David Walsh blog http://davidwalsh.name/upgrade-nodejs

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