Open Source is king!



installing node js in ubuntu environment

#Method 1 
sudo apt update
sudo apt install nodejs
node -v 
sudo apt install npm 
npm --version

#Method 2 
sudo apt-get install curl
curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash - &&\