November 2019
Beginner
436 pages
8h 52m
English
Ubuntu usually doesn't ship with the Node.js and NPM tools out of the box. You need to install them separately.
To install Node.js, follow these steps:
sudo apt install -y nodejs
node --version
The system's output, which will be the version's value, will be v8.11.4 or higher.
To install NPM, follow these steps:
sudo apt install -y npm
npm --version
The version number ...
Read now
Unlock full access