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
1sudo apt install curl
2curl -sL https://deb.nodesource.com/setup_14.x | sudo bash -
3sudo apt install -y nodejs
1curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
2sudo apt install nodejs
3sudo apt install npm
4sudo apt update
1//Author: Mohammad Arman Khan
2//How To Install Node.js on Ubuntu
31: sudo apt-get update
42: sudo apt-get install nodejs
53: sudo apt-get install npm
64: nodejs -v