How To Install Nodejs On Ubuntu
As someone new to Ubuntu, I tried installing Node by using the following command
sudo apt install nodejs
But had many problems. It took me two days to figure out that the version I got from Ubuntu's official sources was outdated (12.22.9), not the l...
vrushalikudande.com2 min read
Shubham Kshetre
Also, We can update the node version after installation with apt for the latest version of node.
sudo npm install -g n && sudo n latest && node --version
Btw, great start!