Steps to Install Latest Node.js and NPM on Ubuntu with PPA and Quasar CLI Installation to start Quasar Framework Development
Step 1 – Add Node.js PPA Node.js package is available in LTS release and the current release. It’s your choice to select which version you want to install on the system as per your requirements. Let’s add the PPA to your system to install Nodejs on Ubuntu. Use Current Release: At te last update of this tutorial, Node.js 12 is the current Node.js release available. sudo apt-get install curl curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - Use LTS Release : At the last update of this tutorial, Node.js 10.15.3 is the LTS release available. sudo apt-get install curl curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash - For this tutorial, I am using the latest current release and added their PPA to my system. Step 2 – Install Node.js on Ubuntu You can successfully add Node.js PPA to Ubuntu system. Now execute the below command install Node on and Ubuntu using apt-get. This will also install NPM with node.js. This command al...