Installing nodejs 12.x and npm on ubuntu 18.x

The series of commands for installing nodejs 12.x and npm on ubuntu 18.x

sudo apt update

sudo apt install nodejs

sudo apt install npm

sudo apt install curl

curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash –

sudo apt-get install -y nodejs

To check the version:

node -v

      or

nodejs -v

      or

npm -v

Similar Posts