How to install #node.js on #ubuntu 16.04/18.04 using #nvm (Node Version Manager)
▻https://hackernoon.com/how-to-install-node-js-on-ubuntu-16-04-18-04-using-nvm-node-version-mana
IntroductionNVM is basically the version manager for Node.js. With the help of NVM we can install and use multiple versions of Node.js along with #npm. If we have multiple Node.js projects having various versions of node and npm then always install node using NVM only.Installation of NVMFirst download the NVM installation script using cURL as follows$ curl -o- ▻https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bashAfter downloading the script, run the script using bash as follows$ bash install_nvm.shTo reflect the changes for the current user session, use following command$ source ~/.profileCheck installed NVM version as follows$ nvm —versionUse following nvm command to list all available node.js versions$ nvm ls-remoteIt shows the output as followsInstall particular node (...)