linux debian install latest nodejs code example
Example 1: debian install npm
# Debian installing Node.JS and NPM package manager
sudo apt update
sudo apt install nodejs npm
Example 2: ubuntu 18 install nodejs
cd ~
curl -sL https://deb.nodesource.com/setup_12.x -o nodesource_setup.sh
sudo bash nodesource_setup.sh
sudo apt install nodejs
nodejs -v # shows your version