Install Node JS on Ubuntu 20.4

Ponnuchamy T
Apr 5, 2021

Step 1: Download Linux binary from https://nodejs.org/en/download/. You can download the LTS version or the current version.

Step 2: Extract The downloaded file. Then rename(node-v14) it.

Step 3: Run the following command on your terminal

sudo cp -r node-v14/{bin,include,lib,share} /usr/

That’s it.

You can check your NODE and NPM version

--

--