News
3 new Serverspace GPT API Language Models available now!
JH
Joe Harris
March 31 2021
Updated August 1 2023

How to Install Node.js on Ubuntu 20.04

Linux Node.js Ubuntu

Using another OS?

Select the desired version or distribution.

Node.js is a JavaScript runtime. In this tutorial, we'll go over the different ways to install Node.js on Ubuntu 20.04 and their benefits.

How to install Node.js on Ubuntu 20.04:

Installing Node.js with apt

This is the easiest and most sufficient installation method for many purposes. In addition to Node.js itself, we will immediately install its package manager - npm. Node.js packages are libraries or tools that can be downloaded using npm.

sudo apt update && sudo apt install nodejs npm
Copy

You can check the success of the installation, and at the same time, you can find out the version using the command:

nodejs -v
Copy

Installing Node.js with PPA

Installing via the PPA gives you a choice of version. Check out the available versions in the documentation. We'll also need curl to continue.

sudo apt install curl
Copy

Now we will download and run the script of the corresponding version, which will add the PPA to the system repositories.

curl -fsSL https://deb.nodesource.com/setup_15.x | sudo -E bash -
Copy

And install Node.js from the added repositories.

sudo apt install nodejs
Copy

Let's check the installed version.

node -v
Copy

In this case, npm is already installed.

Installing Node.js with NVM

NVM is Node.js Version Manager. It allows you to install different versions of Node.js with npm packages at the same time and switch between them at runtime.
To install the latest version of the NVM installation script, go to the Installing and Updating part of the project page on GitHub, copy the link and run it on your Ubuntu 20.04.

wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash
Copy

Now you need to log out of your account and log back in. The second option is to execute the following commands to ensure the operation of NVM:

export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
[ -s "$NVM_DIR/bash_completion" ] && . "$NVM_DIR/bash_completion" bash_completion
Copy

At this point, the NVM is ready to use. To get a list of versions available for installation:

nvm list-remote
Copy

Choose a version and install:

nvm install 14.16.0
Copy

View the list of installed versions:

nvm list
Copy

Output:

v12.21.0
-> v14.16.0
default -> 14.16.0 (-> v14.16.0)
...
Copy

To select a Node.js version, use the command indicating the required version. Thus, you can switch between different versions if there are several installed.

nvm use v14.16.0
Copy

If, in addition to the versions installed using nvm, the system also contains the version installed using apt, it will be marked as system. To switch to it, use:

nvm use system
Copy

In addition, the nvm list output shows LTS releases of Node.js. Not installed ones look like this:

lts/dubnium -> v10.24.0 (-> N/A)
Copy

To install them, specify the release alias:

nvm install lts/dubnium
Copy

To check the currently used version, use the command:

node -v
Copy

Output:

v14.16.0
Copy

Vote:
5 out of 5
Аverage rating : 5
Rated by: 1
33145 North Miami, FL 2520 Coral Way apt 2-135
+1 302 425-97-76
700 300
ITGLOBAL.COM CORP
700 300
We use cookies to make your experience on the Serverspace better. By continuing to browse our website, you agree to our
Use of Cookies and Privacy Policy.