Projects

Update ubuntu

sudo apt update

Upgrade ubuntu

sudo apt upgrade

Lets get the location of Node.js software from Ubuntu repositories.

curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
Install Node.js on the server

Install Node.js with the command below

sudo apt-get install -y nodejs

Note: The command above installs both nodejs and npm. ...
Learn More