1sudo apt-get install curl
2curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash -
3sudo apt-get install nodejs
4# Check node version
5node -v
6# v13.9.0
7# Also, check the npm version
8npm -v
9# 6.13.7
1curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
2sudo apt install nodejs
3sudo apt install npm
4sudo apt update
1# Using Ubuntu
2curl -fsSL https://deb.nodesource.com/setup_14.x | sudo -E bash -
3sudo apt-get install -y nodejs
4
5# Using Debian, as root
6curl -fsSL https://deb.nodesource.com/setup_14.x | bash -
7apt-get install -y nodejs
1# Using Ubuntu
2curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
3sudo apt-get install -y nodejs
4
5# Using Debian, as root
6curl -fsSL https://deb.nodesource.com/setup_16.x | bash -
7apt-get install -y nodejs
1curl -sL https://deb.nodesource.com/setup_15.x | sudo -E bash -
2sudo apt-get install nodejs