Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion apps/site/pages/en/download/package-manager/all.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,23 @@ pacman -S nodejs npm

## CentOS, Fedora and Red Hat Enterprise Linux

Node.js is available as a module called `nodejs` in CentOS/RHEL 8 and Fedora.
Node.js and npm packages are available in the main Repository for Fedora and RHEL 10.

It can be installed from a default stream which contains the currently active
LTS nodejs version.

```bash
dnf install nodejs npm
```

Or from a specific stream for alternative, maintained version (maintained versions
might differ between fedora and various RHEL releases).

```bash
dnf install nodejs24
```

For older CentOS/RHEL releases Node.js is available as a module called `nodejs`.

```bash
dnf module install nodejs:<stream>
Expand Down