Skip to main content
Redhat Developers  Logo
  • Products

    Featured

    • Red Hat Enterprise Linux
      Red Hat Enterprise Linux Icon
    • Red Hat OpenShift AI
      Red Hat OpenShift AI
    • Red Hat Enterprise Linux AI
      Linux icon inside of a brain
    • Image mode for Red Hat Enterprise Linux
      RHEL image mode
    • Red Hat OpenShift
      Openshift icon
    • Red Hat Ansible Automation Platform
      Ansible icon
    • Red Hat Developer Hub
      Developer Hub
    • View All Red Hat Products
    • Linux

      • Red Hat Enterprise Linux
      • Image mode for Red Hat Enterprise Linux
      • Red Hat Universal Base Images (UBI)
    • Java runtimes & frameworks

      • JBoss Enterprise Application Platform
      • Red Hat build of OpenJDK
    • Kubernetes

      • Red Hat OpenShift
      • Microsoft Azure Red Hat OpenShift
      • Red Hat OpenShift Virtualization
      • Red Hat OpenShift Lightspeed
    • Integration & App Connectivity

      • Red Hat Build of Apache Camel
      • Red Hat Service Interconnect
      • Red Hat Connectivity Link
    • AI/ML

      • Red Hat OpenShift AI
      • Red Hat Enterprise Linux AI
    • Automation

      • Red Hat Ansible Automation Platform
      • Red Hat Ansible Lightspeed
    • Developer tools

      • Red Hat Trusted Software Supply Chain
      • Podman Desktop
      • Red Hat OpenShift Dev Spaces
    • Developer Sandbox

      Developer Sandbox
      Try Red Hat products and technologies without setup or configuration fees for 30 days with this shared Openshift and Kubernetes cluster.
    • Try at no cost
  • Technologies

    Featured

    • AI/ML
      AI/ML Icon
    • Linux
      Linux Icon
    • Kubernetes
      Cloud icon
    • Automation
      Automation Icon showing arrows moving in a circle around a gear
    • View All Technologies
    • Programming Languages & Frameworks

      • Java
      • Python
      • JavaScript
    • System Design & Architecture

      • Red Hat architecture and design patterns
      • Microservices
      • Event-Driven Architecture
      • Databases
    • Developer Productivity

      • Developer productivity
      • Developer Tools
      • GitOps
    • Secure Development & Architectures

      • Security
      • Secure coding
    • Platform Engineering

      • DevOps
      • DevSecOps
      • Ansible automation for applications and services
    • Automated Data Processing

      • AI/ML
      • Data Science
      • Apache Kafka on Kubernetes
      • View All Technologies
    • Start exploring in the Developer Sandbox for free

      sandbox graphic
      Try Red Hat's products and technologies without setup or configuration.
    • Try at no cost
  • Learn

    Featured

    • Kubernetes & Cloud Native
      Openshift icon
    • Linux
      Rhel icon
    • Automation
      Ansible cloud icon
    • Java
      Java icon
    • AI/ML
      AI/ML Icon
    • View All Learning Resources

    E-Books

    • GitOps Cookbook
    • Podman in Action
    • Kubernetes Operators
    • The Path to GitOps
    • View All E-books

    Cheat Sheets

    • Linux Commands
    • Bash Commands
    • Git
    • systemd Commands
    • View All Cheat Sheets

    Documentation

    • API Catalog
    • Product Documentation
    • Legacy Documentation
    • Red Hat Learning

      Learning image
      Boost your technical skills to expert-level with the help of interactive lessons offered by various Red Hat Learning programs.
    • Explore Red Hat Learning
  • Developer Sandbox

    Developer Sandbox

    • Access Red Hat’s products and technologies without setup or configuration, and start developing quicker than ever before with our new, no-cost sandbox environments.
    • Explore Developer Sandbox

    Featured Developer Sandbox activities

    • Get started with your Developer Sandbox
    • OpenShift virtualization and application modernization using the Developer Sandbox
    • Explore all Developer Sandbox activities

    Ready to start developing apps?

    • Try at no cost
  • Blog
  • Events
  • Videos

Install Node.js on Red Hat Enterprise Linux

October 26, 2018
Lucas Holmquist
Related topics:
Developer ToolsLinux
Related products:
Red Hat Enterprise Linux

Share:

    Installing Node.js on Red Hat Enterprise Linux 8/9

     

    This post is going to show how to install the latest Long Term Support(LTS) version of Node.js on Red Hat Enterprise Linux(RHEL). The Node.js team at Red Hat recommends using the most recent LTS version of Node.js when possible. At the time of this writing Node.js 20 is the latest LTS, but these instructions will apply to any supported version on both RHEL 8 and RHEL 9. 

    It should also be noted that you must be a privileged user on the machine you are installing on.  

    Enable the Node.js module

    The first thing that we need to do is enable the module stream for the latest Node.js LTS version, in our case Node.js 20.  This is done with the following command

    dnf module enable nodejs:20

    It is also possible to get a list of the available module streams for Node.js using the following command

    dnf module list nodejs

    You will see something similar to the below output:

    nodejs               18         common [d], development, minimal, s2i Javascript runtime
    
    nodejs               20         common [d], development, minimal, s2i Javascript runtime

    Install Node.js

    Now that we’ve enabled the module stream we want,  it is time to actually install Node.js.  This is simply done with the following command:

    dnf install nodejs

    The screenshot below shows what packages will be installed.  You should see something similar

    After the installation completes, you can check that Node.js is installed by using the node version command.  It should return something similar:

    node --version
    
    
    
    v20.11.0

    It should also be noted that the Node.js installation comes with some weak dependencies, such as docs. To skip installing these optional packages, you can use this command:

    dnf install nodejs --setopt=install_weak_deps=False

    Install a Different Node.js Module Profile

    If we take a look at the output from the module list command from above, we notice that there is some extra output alongside the Node.js version:

    nodejs               20         common [d], development, minimal, s2i Javascript runtime

    These values are different module profiles that can be installed.  By default the common profile is installed, but if you needed to also install all the development tools for building and compiling native add-ons, you might choose the development profile.  This other profile can be installed with the following command:

    dnf module install nodejs/development 

    For completeness, the default install command that we used earlier in the post, could also be written this way:

    dnf module install nodejs/common

    Examples

    Now that the Node.js runtime is installed, let's create a couple of examples to test that things are working.

    This first is a very simple application that outputs the Node.js version using console.log .  

    Using a text editor such as vi, nano, or gedit create a file named hello.js with the following content:

    console.log('Hello, From Node ' + process.version);

    Save the file and then run it with the node command:

    node ./hello.js
    
    Hello, From Node v20.11.0

    The next step is to try a slightly larger Node.js example that implements a tiny web server. Using your preferred text editor, create a file named hello-http.js with the following content:

    const http = require('node:http');
    const hostname = '127.0.0.1';
    const port = 3000;
    
    const server = http.createServer((req, res) => {
      res.statusCode = 200;
      res.setHeader('Content-Type', 'text/plain');
      res.end('Hello World\n');
    });
    
    server.listen(port, hostname, () => {
      console.log(`Server running at http://${hostname}:${port}/`);
    });

    Again, save the file, exit the editor and run the file with the node command.

     

    node ./hello-http.js
    
    
    
    Server running at http://127.0.0.1:3000/

    You can either use curl or a browser to access the server at http://127.0.0.1:3000

    Learn More

    If you want to learn more about what Red Hat is up to on the Node.js front, check out our Node.js page here.  

    Installing Node.js on Red Hat Enterprise Linux 8/9

    This post is going to show how to install the latest Long Term Support(LTS) version of Node.js on Red Hat Enterprise Linux(RHEL). The Node.js team at Red Hat recommends using the most recent LTS version of Node.js when possible. At the time of this writing Node.js 20 is the latest LTS, but these instructions will apply to any supported version on both RHEL 8 and RHEL 9.  For instructions on installing Node.js on previous versions of RHEL, see this article.

    It should also be noted that you must be a privileged user on the machine you are installing on. 

    Enable the Node.js module

    The first thing that we need to do is enable the module stream for the latest Node.js LTS version, in our case Node.js 20.  This is done with the following command:

    dnf module enable nodejs:20
    Enable the Node.js module

    It is also possible to get a list of the available module streams for Node.js using the following command:

    dnf module list nodejs

    You will see something similar to the below output:

    nodejs               18         common [d], development, minimal, s2i Javascript runtime
    nodejs               20         common [d], development, minimal, s2i Javascript runtime

    Install Node.js

    Now that we’ve enabled the module stream we want,  it is time to actually install Node.js.  This is simply done with the following command:

    dnf install nodejs

    The screenshot below shows what packages will be installed.  You should see something similar

    Enable the Node.js module Install

    After the installation completes, you can check that Node.js is installed by using the node version command.  It should return something similar:

    node --version
    
    v20.11.0

    It should also be noted that the Node.js installation comes with some weak dependencies, such as docs. To skip installing these optional packages, you can use this command:

    dnf install nodejs --setopt=install_weak_deps=False

    Install a Different Node.js Module Profile

    If we take a look at the output from the module list command from above, we notice that there is some extra output alongside the Node.js version:

    nodejs               20         common [d], development, minimal, s2i Javascript runtime

    These values are different module profiles that can be installed.  By default the common profile is installed, but if you needed to also install all the development tools for building and compiling native add-ons, you might choose the development profile.  This other profile can be installed with the following command:

    dnf module install nodejs/development 

    For completeness, the default install command that we used earlier in the post, could also be written this way:

    dnf module install nodejs/common

    Examples

    Now that the Node.js runtime is installed, let's create a couple of examples to test that things are working.

    This first is a very simple application that outputs the Node.js version using console.log

    Using a text editor such as vi,nano,or gedit create a file named hello.js with the following content:

    console.log('Hello, From Node ' + process.version);

    Save the file and then run it with the node command:

    node ./hello.js
    
    Hello, From Node v20.11.0

    The next step is to try a slightly larger Node.js example that implements a tiny web server. Using your preferred text editor, create a file named hello-http.js with the following content:

    const http = require('node:http');
    const hostname = '127.0.0.1';
    const port = 3000;
    const server = http.createServer((req, res) => {
      res.statusCode = 200;
      res.setHeader('Content-Type', 'text/plain');
      res.end('Hello World\n');
    });
    server.listen(port, hostname, () => {
      console.log(`Server running at http://${hostname}:${port}/`);

    Again, save the file, exit the editor and run the file with the node command.

    node ./hello-http.js
    
    Server running at http://127.0.0.1:3000/

    You can either use curl or a browser to access the server at http://127.0.0.1:3000

    Learn More

    If you want to learn more about what Red Hat is up to on the Node.js front, check out our Node.js page here. 

    Last updated: March 22, 2024
    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Products

    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform

    Build

    • Developer Sandbox
    • Developer Tools
    • Interactive Tutorials
    • API Catalog

    Quicklinks

    • Learning Resources
    • E-books
    • Cheat Sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site Status Dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit
    © 2025 Red Hat

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Report a website issue