Skip to content

Commit f036d6a

Browse files
committed
fix: correct outdated fedora/CentOs/RHEL install guide
Installation method in Fedora/CentOs/RHEL space has changed in the last few years, moving away from using modules to using traditional rpms for all maintained stream versions.
1 parent a5ea254 commit f036d6a

File tree

1 file changed

+17
-1
lines changed
  • apps/site/pages/en/download/package-manager

1 file changed

+17
-1
lines changed

apps/site/pages/en/download/package-manager/all.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,23 @@ pacman -S nodejs npm
4343

4444
## CentOS, Fedora and Red Hat Enterprise Linux
4545

46-
Node.js is available as a module called `nodejs` in CentOS/RHEL 8 and Fedora.
46+
Node.js and npm packages are availale in the main Repository for Fedora and RHEL 10.
47+
48+
It can be installed from a default stream which contains the currently active
49+
LTS nodejs version.
50+
51+
```bash
52+
dnf install nodejs npm
53+
```
54+
55+
Or from a specific stream for alternative, maintained version (maintained versions
56+
might differ between fedora and various RHEL releases).
57+
58+
```bash
59+
dnf install nodejs24
60+
```
61+
62+
for older CentOS/RHEL releases Node.js is available as a module called `nodejs`.
4763

4864
```bash
4965
dnf module install nodejs:<stream>

0 commit comments

Comments
 (0)