ubuntu 18.04 install latest nodejs code example

Example 1: 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 2: 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    #to check if its installed

Example 3: install node js using nvm ubuntu

curl -sL https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh -o install_nvm.sh

Example 4: install nodejs from ubuntu 18.04

cd ~
curl -sL https://deb.nodesource.com/setup_10.x -o nodesource_setup.sh