Node.js is not available in the default CentOS / Red Hat package repository but in EPEL (Extra Packages for Enterprise Linux) repository. Even so, it's still a slightly outdated version of Node.js.
If you require the latest or specific version of Node.js for CentOS and Red Hat (RHEL), you can install from NodeSource's yum repostirory.
Related: How to install latest version of Node.js for CentOS / Red Hat / Fedora
Steps to install Node.js on CentOS, Red Hat or Fedora:
- Enable epel-release repository by installing the epel-release package.
$ sudo yum install --assumeyes epel-release
- Install nodejs package. This will also install npm as dependency.
$ sudo yum install --assumeyes nodejs ########################## ============================================================================================== Package Arch Version Repository Size ============================================================================================== Installing: nodejs x86_64 1:6.14.3-1.el7 epel 4.7 M Installing for dependencies: http-parser x86_64 2.7.1-5.el7_4 base 28 k libuv x86_64 1:1.22.0-1.el7 epel 127 k npm x86_64 1:3.10.10-1.6.14.3.1.el7 epel 2.5 M Transaction Summary ============================================================================================== Install 1 Package (+3 Dependent packages) ##########################
- Check installed node and npm version.
$ node -v v6.14.3 $ npm -v 3.10.10

Author: Mohd Shakir Zakaria
Mohd Shakir Zakaria is a skilled cloud architect with a background in development, entrepreneurship, and open-source advocacy. As the founder of Simplified Guide, he helps others understand the complexities of computing, making tech concepts accessible to all.

Mohd Shakir Zakaria is a skilled cloud architect with a background in development, entrepreneurship, and open-source advocacy. As the founder of Simplified Guide, he helps others understand the complexities of computing, making tech concepts accessible to all.
Discuss the article:
Comment anonymously. Login not required.