How to install nodejs and npm on ubuntu 20.04
In this video we learnt how to install nodejs on ubuntu 20.04
#command used
1. curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash –
2. sudo apt install nodejs
#To check node version
node –version
#To check npm version
npm –version
ubuntu