update node in linux code example
Example 1: updating node js ubuntu
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
sudo apt-get install -y nodejs
Example 2: linux command to update nodejs
wget https://nodejs.org/dist/v12.13.1/node-v12.13.1-linux-x64.tar.xz
Example 3: how to update node in ubuntu 18.04
sudo npm cache clean -f
sudo npm install -g n
sudo n stable
Example 4: linux command to update nodejs
tar -C /usr/local –strip-components 1 -xJf node-v12.13.1-linux-x64.tar.xz