GNU/Linux Managing NodeJs Versions with N – QuickStart Guide
Hi! This tutorial will guide you step-by-step on How to Install and Manage Multiple Node Js Version with N Package in GNU/Linux.
And N Node Version Manager is Just Simple: no Subshells, no Profile setup, no convoluted API.
It’s an easier and quicker Alternative to Software like NVM.

1. Installing NodeJS
How to Install NodeJS on GNU/Linux:
2. Installing N
Then to Install N Package on Linux
Simply run:sudo npm install -g n
3. Setting NodeJs Version
Now to Install & Manage Node.js Versions
And then Install and Set the Latest Version:sudo n latest
Next, Open a New Terminal Window and Check it:node --version
To switch back to the Lastest LTS Version:sudo n lts
You can easily Setup any available one, like:sudo n 12.13.0
For Help type:n --help
And for further Insight see the Official Documentation.