How To Install Latest NodeJS And NPM On Ubuntu

This comprehensive Linux guide expects that you run the following commands as root user but if you decide to run the commands as a different user then ensure that the user has sudo access and that you precede each of the privileged commands with sudo

This brief tutorial is going to show students and new users how to easily install the latest Node.js and NPM packages on Ubuntu. Although Node.js comes in Ubuntu default repositories, if you want to get the latest version, you’ll have to add its official PPA.

This tutorial will work for all Ubuntu LTS releases 14.04 LTS, 16.04LTS and 18.04 LTS and also 14.10, 15.10, 16.10, 17.10, 18.10 and 19.10 Ubuntu releases.

Add Node.js PPA

Before installing the latest version of Node.js, you must add its PPA to Ubuntu.

Latest Current Release

Before installing the latest version of Node.js, you must add its PPA to Ubuntu. At this time Node.js 12.6.0 is the current latest Node.js release available.

root@codesposts:~$ apt-get install curl python-software-properties
root@codesposts:~$ curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -

Latest LTS Release

You have to add the PPA for the latest LTS release available. At this time, Node.js 10.16.0 is the latest LTS release.

To Add PPA for latest LTS release, run this command:

root@codesposts:~$ apt-get install curl python-software-properties
root@codesposts:~$ curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -

Install Node.js

To install the latest version of Node.js on your system, run this command:

root@codesposts:~$ apt-get install nodejs

Verifying The Installation

After the installation of latest Node.js, you can verify the installation by the following command:

root@codesposts:~$ node -v 
v12.6.0

You can also verify the installation of the latest npm by running the following command:

root@codesposts:~$ npm -v
6.9.1

Testing The Web Server

After the installation of the Node.js and npm on your system. You can run the following commands to test whether the web server is installed correctly or not.

root@codesposts:~$ nano /tmp/http_server.js

After this, copy the following code to the file http_server.js

/tmp/http_server.js
const http = require('http');

const hostname = '127.0.0.1';
const port = 3000;

const server = http.createServer((req, res) => {
  res.statusCode = 200;
  res.setHeader('Content-Type', 'text/plain');
  res.end('Hello Worldn');
});

server.listen(port, hostname, () => {
  console.log(`Server running at http://${hostname}:${port}/`);
});

Now, save and exit the file

After this, run the following command:

root@codesposts:~$ node http_server.js

debugger listening on port 5858
Server running at http://127.0.0.1:3000/

The post How To Install Latest NodeJS And NPM On Ubuntu appeared first on CODESPOSTS.COM.

Go to Source
Author: staff

Ubuntu Server Admin

Recent Posts

Canonical Releases Ubuntu 25.04 Plucky Puffin

The latest interim release of Ubuntu introduces “devpacks” for popular frameworks like Spring, along with…

2 days ago

Ubuntu 25.04 (Plucky Puffin) Released

Ubuntu 25.04, codenamed “Plucky Puffin”, is here. This release continues Ubuntu’s proud tradition of integrating…

2 days ago

Extended Security Maintenance for Ubuntu 20.04 (Focal Fossa) begins May 29, 2025

Ubuntu released its 20.04 (Focal Fossa) release 5 years ago, on March 23, 2020. As…

3 days ago

Ubuntu 20.04 LTS End Of Life – activate ESM to keep your fleet of devices secure and operational

Focal Fossa will reach the End of Standard Support in May 2025, also known as…

4 days ago

Ubuntu MATE 25.04 Release Notes

Ubuntu MATE 25.04 is ready to soar! 🪽 Celebrating our 10th anniversary as an official…

4 days ago

Ubuntu Weekly Newsletter Issue 887

Welcome to the Ubuntu Weekly Newsletter, Issue 887 for the week of April 6 –…

5 days ago