I'm trying to install Quasar framework
in using sudo npm install -g quasar-cli
. I realised that I need the latest version of node.js
. I want to install the latest recommend version of node.js
, but I'm not familiar with that kind of installation. Could anyone be able to tell me what do I have to do to install that software?
Asked
Active
Viewed 2,061 times
0
-
3Possible duplicate of How to Install the Latest Versions of NodeJS and NPM for Ubuntu 14.04 LTS – Feb 10 '17 at 02:09
1 Answers
-1
curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash -
sudo apt-get install -y nodejs
You may also want to install the build tools:
sudo apt-get install -y build-essential
According to the nodejs website

TheRoyalTnetennba
- 169
- 1
- 10