How to Install Node.js on Ubuntu 14.04
5 March, 2021 by
How to Install Node.js on Ubuntu 14.04
Administrator
| No comments yet


 

Node.js, a JavaScript-based platform, is an increasingly popular, lightweight, and efficient option for developers. It allows coders to use JavaScript on both the front-end and the back-end thanks to Google’s awesome V8 engine.

With more than 100,000 packages, Node package manager, or npm, is a fantastic way to find open-source solutions for extending Node and npm’s semantic versioning system, which allows for very tight control over what packages you are using.

5 Ways to Install Node.js on Ubuntu

There are several ways to do this, but we recommend Option 1: Node Version Manager (nvm). Here is the full list of options:

Option 1 is our recommended method for everyone. Option 2 is incredibly simple, while Options 3, 4, and 5 have the advantage of keeping your Node and npm packages the most current. Before trying any of these install options, you’ll want to remove the old Node package to avoid conflicts. And for any more information on Node.js, you can always check out the Github repository.

Before You Get Started: Remove Old Node Package to Avoid Conflicts

On Ubuntu, the Node.js package has a similar name to the older version, Node. The latter is an amateur packet radio program you can more than likely remove.

If you already have Node installed, you might want to remove it. Some Node.js tools might execute Node.js as Node instead of Node.js, causing conflicts.

You can look for and remove the Node package by executing these commands in a terminal. To access a terminal, navigate through the desktop menu:
Applications → Accessories → Terminal

Run this command and if it says install in the right column, Node is on your system:

If you found the old Node package installed, run this command to completely remove it:

Option 1: Install Node.js with Node Version Manager

First, make sure you have a C++ compiler. Open the terminal and install the build-essential and libssl-dev packages if needed. By default, Ubuntu does not come with these tools — but they can be installed in the command line.

Use apt-get to install the build-essential package:

Employ a similar process to get libssl-dev:

You can install and update Node Version Manager, or nvm, by using cURL:

You will be asked to close and reopen the terminal. To verify that nvm has been successfully installed after you reopen the terminal, use:

That command will output nvm if the installation worked.

To download, compile and install the latest version of Node:

In any new shell, you’ll need to tell nvm which version to use:

To set a default Node.js version to be used in any new shell, use the alias default:

Not only does nvm allow you to run newer versions of Node.js and npm, you can install and migrate any desired versions you’d prefer. Go to the nvm GitHub repository for more information.

Option 2: Install Node.js with Ubuntu Package Manager

To install Node.js, type the following command in your terminal:

Then install the Node package manager, npm:

Create a symbolic link for node, as many Node.js tools use this name to execute.

Now we should have both the Node and npm commands working:

Option 3: Install Node.js with Maintained Ubuntu Packages

Add the Node.js-maintained repositories to your Ubuntu package source list with this command:

Then install Node.js with apt-get:

Optionally we can create a symbolic link for node (for reasons mentioned earlier):

Using this install option, we end up with newer versions of Node.js and npm:

Option 4: Install Node.js with Standard Binary Packages

Go to the official Node.js download page and download either the 32-bit or 64-bit Linux binary file, depending on your system type.

You can determine the CPU architecture of your server with these commands:

You can download the file from the browser or from the console. The latter is shown below (Note: the specific Node.js version might be different for you):

To make sure you can unpack the file, install xz-utils:

Next, execute the following command to install the Node.js binary package in /usr/local/:

You should now have both Node.js and npm installed in /usr/local/bin. You can check this with:

Final Words

Hopefully this will get you going with Node.js on Ubuntu. If you are new to developing applications with Node.js, the Nodeschool.io website has several interesting tutorials.

Sign in to leave a comment