Skip to content

Instantly share code, notes, and snippets.

@ddeveloperr
Created October 14, 2015 18:33
Show Gist options
  • Select an option

  • Save ddeveloperr/453e9c940b4fa63d94c1 to your computer and use it in GitHub Desktop.

Select an option

Save ddeveloperr/453e9c940b4fa63d94c1 to your computer and use it in GitHub Desktop.
How to Upgrade Node.js via NPM

###Upgrade Node.js via NPM

sudo npm cache clean -f
sudo npm install -g n
sudo n stable

The n package represents a Node helper, and running the last command upgrades node to the latest stable version. Instead of using "stable", you could specify a desired version:

sudo n 0.10.35

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