Dev

Install Node.js 10,12 LTS on Ubuntu 22.04|20.04|18.04|16.04

Welcome to our guide on how to install Node.js 10|12 LTS on Ubuntu 22.04|20.04|18.04|16.04. Node 10 became LTS version starting from Node v10.13.0. This LTS release of Node (Dubnium) was supported until April 2020. Node.js 12 entered LTS state on 2019-10-22 and is expected reached EOL on 2022-04-01.

Original content from computingforgeeks.com - post 4920

Install Node.js 12,10 LTS on Ubuntu 22.04|20.04|18.04|16.04

Node.js is a JavaScript runtime built on Chrome’s V8 JavaScript engine. To install Node.js 12.x & 10.x LTS on Ubuntu 22.04|20.04|18.04|16.04, Add NodeSource binary distributions repository.

Node.js 12:

sudo apt update
sudo apt -y install curl dirmngr apt-transport-https lsb-release ca-certificates
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -

Node.js 10:

sudo apt update
sudo apt -y install curl dirmngr apt-transport-https lsb-release ca-certificates
curl -sL https://deb.nodesource.com/setup_10.x | sudo bash

This command will configure Node.js APT repository to your OS.

After adding the repository, install Node.js 12|10 LTS  on Ubuntu 18.04 /16.04 / Debian 10/9 using the apt package manager.

sudo apt update
sudo apt -y install gcc g++ make
sudo apt -y install nodejs

To install the Yarn package manager, run:

curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update && sudo apt-get install yarn

Confirm Node version

# Node.js 10
$ node -v
v10.15.3

# Node.js 12
$ node -v
v12.22.7

Thanks for installing Node.js 10 LTS on Ubuntu 22.04|20.04|18.04|16.04 with our guide. Stay connected for more interesting How-To guides and Infrastructure setups tutorials.

You can also check:

Keep reading

Upgrade Ubuntu 24.04 to Ubuntu 26.04 LTS (Step by Step) Ubuntu Upgrade Ubuntu 24.04 to Ubuntu 26.04 LTS (Step by Step) UFW Firewall Commands with Examples on Ubuntu 24.04 / 22.04 Security UFW Firewall Commands with Examples on Ubuntu 24.04 / 22.04 Ubuntu 26.04 LTS (Resolute Raccoon): New Features, Changes, and What to Know Ubuntu Ubuntu 26.04 LTS (Resolute Raccoon): New Features, Changes, and What to Know Install OrientDB on Ubuntu 26.04 / 24.04 / 22.04 Databases Install OrientDB on Ubuntu 26.04 / 24.04 / 22.04 Install Valkey on Debian 13 / 12 Databases Install Valkey on Debian 13 / 12 Install Nagios Core on Ubuntu 26.04 LTS Monitoring Install Nagios Core on Ubuntu 26.04 LTS

Leave a Comment

Press ESC to close