Centos – nodejs version on EPEL repository

centosnode.jsyum

Current stable node.js version is v0.12.2. I just run yum update on my machine and it updated node to v0.10.36.

Why is my EPEL repo version so old compared to current stable one? Can I update node to latest version through yum or do I have to compile it myself?

I have CentOS 6.6

Best Answer

RHEL 6 was released in 2010 and one of the consequences of choosing an enterprise distribution with long term support cycles is you'll end up with seeming old versions of software, a trade-off for stability and better support for third-party software.

(Note: an old version do not equate to insecure, read up on backporting of security updates.)

Typically if you need something more recent you should look for a the next major release i.e. RHEL 7.

You might get more recent supported versions of certain software in older Red Hat Enterprise Linux releases by subscribing to the Software Collections channel.

Node.js is part of the SC channel currently supported as release 0.10 so that seems about correct.

Related Topic