How to Install Node.js in RHEL 8

Node.js is a lightweight and powerful JavaScript run-time environment platform which is based on Chrome’s V8 JavaScript engine and it is used to create scalable network applications.

In this article, we will guide you on how to install the latest version of Node.js in RHEL 8 Linux distribution.

Requirements:

  1. RHEL 8 with Minimal Installation
  2. RHEL 8 with RedHat Subscription Enabled
  3. RHEL 8 with Static IP Address
  4. How to Setup a Developer Workstation in RHEL 8

Installing Node.js on RHEL 8

1. To install the latest version of Node.js, you need to install development tools such as make, git, gcc on your system using the following dnf command.

# dnf groupinstall "Development Tools" 
Install Development Tools on RHEL 8
Install Development Tools on RHEL 8

2. Next, check the available Node.js package contained in the Application Stream Repository using the following command.

# dnf module list nodejs
Check Node.js Module
Check Node.js Modules

3. Next, install the default Node.js module by running the following command.

# dnf module install nodejs
OR
# dnf install @nodejs 
Install Node.js on RHEL 8
Install Node.js on RHEL 8

If you are a developer, you can use the development profile to install the libraries that enable you to build dynamically loadable modules, as follows:

# dnf module install nodejs/development

4. To install a minimal set of Node.js packages, run the following command.

# dnf module install nodejs/minimal

5. Once you have installed Node.js on your system, use the following commands to check the version and location of the nodejs.

# node -v
# npm -v 
# which node 
# which npm 
Verify Node.js Installation
Verify Node.js Installation

If you are new to Node.js, the following guides should get you started with learning and using it for application development:

  1. How to Write Your First Node.js App in Linux
  2. 14 Best NodeJS Frameworks for Developers in 2019
  3. How to Configure Nginx as Reverse Proxy for Nodejs App
  4. How to Install PM2 to Run Node.js Apps on Production Server

That’s all for now! If you have any queries or additions, don’t hesitate to let us know via the feedback form below.

Hey TecMint readers,

Exciting news! Every month, our top blog commenters will have the chance to win fantastic rewards, like free Linux eBooks such as RHCE, RHCSA, LFCS, Learn Linux, and Awk, each worth $20!

Learn more about the contest and stand a chance to win by sharing your thoughts below!

Aaron Kili
Aaron Kili is a Linux and F.O.S.S enthusiast, an upcoming Linux SysAdmin, web developer, and currently a content creator for TecMint who loves working with computers and strongly believes in sharing knowledge.

Each tutorial at TecMint is created by a team of experienced Linux system administrators so that it meets our high-quality standards.

Join the TecMint Weekly Newsletter (More Than 156,129 Linux Enthusiasts Have Subscribed)
Was this article helpful? Please add a comment or buy me a coffee to show your appreciation.

Got Something to Say? Join the Discussion...

Thank you for taking the time to share your thoughts with us. We appreciate your decision to leave a comment and value your contribution to the discussion. It's important to note that we moderate all comments in accordance with our comment policy to ensure a respectful and constructive conversation.

Rest assured that your email address will remain private and will not be published or shared with anyone. We prioritize the privacy and security of our users.