How to Update Node to Any Version Using Npm

Node.js is very active in the development and you may receive news about the new release almost every month. There are times when we actually need to maintain multiple versions of Node with the flexibility to switch between versions without going through the hassle of installation.

Enter Node helper or n.

You need to have at least a node package manager or npm installed in your system.

Here is what you need to do step by step:

Step 1: Clean npm cache

sudo npm cache clean -f

Step 2: Install node helper (n) globally using the following command.

sudo npm install -g n

Once node helper is installed. You can either get the latest stable version using

sudo n stable

Or if you want a specific version like I needed 8.0.0 then you can do this using.

sudo n 8.0.0

After upgrade you can check the latest version of node using

node --version 

or

node -v.

If you want to switch to the different version of Node, just type n in the terminal and you should see the Node versions listed. Use arrow keys to choose the version and press enter.

Change Node Version

I use this package in production servers too. Works great. Let me know if you use this package too.

Shahid
Shahid

Founder of Codeforgeek. Technologist. Published Author. Engineer. Content Creator. Teaching Everything I learn!

Articles: 298