Home AlmaLinux How to Install Node.js on AlmaLinux

How to Install Node.js on AlmaLinux

Brief: This article guide walks users through the installation and basic usage of Node.js on AlmaLinux 9 and AlmaLinux 8 releases using AppStream and NodeSource Repositories.

Node.js is a cross-platform, open-source, back-end JavaScript runtime environment that runs on Chrome’s V8 JavaScript Engine and executes JavaScript code outside a web browser, which was created to design scalable network and website applications.

Node.js lets programmers use JavaScript to write command line tools and server-side scripts to create dynamic web page content before the page is directed to the user’s web browser.

Installing Node.js on AlmaLinux Using AppStream Repository

First, make sure to keep the AlmaLinux system packages up-to-date by running the following command.

# dnf update -y

Next, we will be using the default AppStream repository to install the available Node.js version as shown.

# dnf module list nodejs        [List Node.js Stream]
# dnf module enable nodejs:16   [Enable Node.js 16 Stream]
# dnf install nodejs -y         [Install Node.js 16 Version]
Install Node.js in AlmaLinux
Install Node.js in AlmaLinux

Once installed, you can verify Node.js by running the following command:

# node -v && npm -v
Verify Node.js in AlmaLinux
Verify Node.js in AlmaLinux

Installing Node.js on AlmaLinux Using NodeSource Repository

The NodeSource repository enables us to retrieve the latest Node.js version release via the dnf package manager. At the time of writing this article, the latest current release is Node.js 18.

We will use the curl command to download the NodeSource repository as shown.

# curl -fsSL https://rpm.nodesource.com/setup_current.x | sudo -E bash -

Once the NodeSource repository is successfully installed on your system, run another system update command and install it as shown:

# dnf update
# dnf -y install nodejs 
Install Node.js 18 on AlmaLinux
Install Node.js 18 on AlmaLinux

Once the Node.js installation successfully completes, confirm the installed version:

# node -v && npm -v
Verify Node.js on AlmaLinux
Verify Node.js on AlmaLinux

Getting Started with Node.js in AlmaLinux

For complete usage of the Node.js package manager (npm), reference the following command:

$ npm -h 
NPM Command Help
NPM Command Help

To configure your first web server, create a file with a .js extension and implement the following content:

# vi my_app.js 

Add the following data:

const http = require('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 LinuxShellTips World and welcome to Node.js on AlmaLinux'); }); 
server.listen(port, hostname, () => { 
      console.log(`Server running at http://${hostname}:${port}/`); 
});

Next, run the file with the command:

# node my_app.js
Create Node.js App
Create Node.js App

Visit the URL http://127.0.0.1:3000 on your web browser:

Check Node.js App from Browser
Check Node.js App from Browser

Your AlmaLinux system is now ready to explore what Node.js has to offer.

Ravi Saive
I am an Experienced GNU/Linux expert and a full-stack software developer with over a decade in the field of Linux and Open Source technologies. Founder of TecMint.com, LinuxShellTips.com, and Fossmint.com. Over 150+ million people visited my websites.

Each tutorial at UbuntuMint is created by a team of experienced writers so that it meets our high-quality standards.

Was this article helpful? Please add a comment to show your appreciation and support.

Got something to say? Join the discussion.

Thanks for choosing to leave a comment. Please keep in mind that all comments are moderated according to our comment policy, and your email address will NOT be published or shared. Please Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.