ubuntu install node.js code example
Example 1: install node js ubuntu
sudo apt-get install curl
curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash -
sudo apt-get install nodejs
node -v
npm -v
Example 2: ubuntu install node js
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
sudo apt install nodejs
sudo apt install npm
sudo apt update
Example 3: linux install node
sudo apt install nodejs
Example 4: install node js lts ubuntu 18.04
// Enabling NodeSource Repository
// replace %V% with desired major version
curl -sL https://deb.nodesource.com/setup_%V%.x | sudo bash -
// Install using apt-get
sudo apt-get install -y nodejs
// check installed node version
node --version
Example 5: node ubutun
sudo apt-get update
sudo apt-get install nodejs npm
Example 6: install nodejs on ubuntu
sudo apt-get install curl
curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash -
sudo apt-get install nodejs
node -v