How to Install Node.js & NPM
A quick guide on how to install Node.js and NPM.

Installing Node.js
Go to the Node.js installation page and follow the instructions to download the LTS version.
Once the installation is complete you can check if they're both installed by running these commands:
terminal
npm -v
node -v
Update your NPM to the latest version
If you want to update NPM to the latest version, you can run this command:
terminal
npm install -g [email protected]
Want to learn more about how to install Node.js and NPM? Read this post on NPMJS.