ubuntu 18.04 nodejs 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: 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 3: 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
Example 4: node install ubuntu
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
sudo apt install nodejs
Example 5: node ubutun
sudo apt-get install curl
Example 6: ubuntu 18.04 nodejs insatll
$ curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -