How to install Node.js on Linux CentOS from the EPEL Repository?

24/09/2024 — Ayyaz Zafar Uncategorized

An alternative installation method uses the EPEL (Extra Packages for Enterprise Linux) repository that is available for CentOS and related distributions.

To gain access to the EPEL repo, you must modify the repo-list of your installation. Fortunately, we can reconfigure access to this repository by installing a package available in our current repos called epel-release.

sudo yum install epel-release

Now that you have access to the EPEL repository, you can install Node.js using your regular yum commands:

sudo yum install nodejs

Once again, you can check that the installation was successful by asking Node to return its version number:

node –version
v0.10.30

Tested on CentOS 6.7 x64

Source: DigitalOcean

Share this post.
Stay up-to-date

Subscribe to our newsletter

Don't miss this

You might also like