Skip to content
Merged
Changes from 1 commit
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 availale in the main Repository for Fedora and RHEL 10.
Comment thread
araujogui marked this conversation as resolved.
Outdated
Comment thread
tjuhaszrh marked this conversation as resolved.
Outdated

It can be installed from a default stream which contains the currently active
LTS nodejs version.
Comment thread
tjuhaszrh marked this conversation as resolved.
Outdated

```bash
dnf install nodejs npm
```

Or from a specific stream for alternative, maintained version (maintained versions
Comment thread
tjuhaszrh marked this conversation as resolved.
Outdated
might differ between fedora and various RHEL releases).
Comment thread
tjuhaszrh marked this conversation as resolved.
Outdated

```bash
dnf install nodejs24
```

for older CentOS/RHEL releases Node.js is available as a module called `nodejs`.
Comment thread
tjuhaszrh marked this conversation as resolved.
Outdated

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