Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nodesource/distributions
NodeSource Node.js Binary Distributions
https://github.com/nodesource/distributions
javascript linux node nodejs runtime
Last synced: 7 days ago
JSON representation
NodeSource Node.js Binary Distributions
- Host: GitHub
- URL: https://github.com/nodesource/distributions
- Owner: nodesource
- License: mit
- Created: 2014-08-14T02:44:10.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-11-06T19:44:19.000Z (3 months ago)
- Last Synced: 2025-01-27T23:05:24.005Z (14 days ago)
- Topics: javascript, linux, node, nodejs, runtime
- Language: Shell
- Homepage: https://nodesource.com
- Size: 1 MB
- Stars: 13,574
- Watchers: 262
- Forks: 3,077
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome - nodesource/distributions - NodeSource Node.js Binary Distributions (Shell)
- awesome-github-star - distributions
- awesome-starred - nodesource/distributions - NodeSource Node.js Binary Distributions (nodejs)
README
# [NodeSource](https://nodesource.com) N|Solid & Node.js Binary Distributions
[![NodeSource](images/ns-linux-distributions.svg)](https://nodesource.com)
[![CircleCI](https://circleci.com/gh/nodesource/distributions/tree/master.svg?style=svg)](https://circleci.com/gh/nodesource/distributions/tree/master)
[![Github Actions Test](https://github.com/nodesource/distributions/actions/workflows/ci.yaml/badge.svg)](https://github.com/nodesource/distributions/actions/workflows/ci.yaml)
This repository contains the instructions to install the **[NodeSource N|solid](https://nodesource.com/products/runtime)** and **[Node.js](http://nodejs.org)** Binary Distributions via .rpm and .deb as well as their setup and support scripts.
If you're looking for more information on NodeSource's low-impact Node.js performance monitoring platform, **[Learn more here](https://nodesource.com/products/nsolid).**
## **New Update ⚠️**
We'd like to inform you of important changes to our distribution repository [nodesource/distributions](https://github.com/nodesource/distributions).
**What's New:**
- _**Package Changes:** DEB and RPM packages are now available under the `nodistro` codename. We no longer package the installer coupled to specific versions. This means you can install Node.js on almost any distro that meets the minimum requirements._
- **Installation Scripts:** Back by popular demand, the installation scripts have returned and are better than ever. See the installation instructions below for details on how to use them.
- **RPM Package Signing Key:** The key used to sign RPM packages has changed. We now sign packages using SHA256, providing better support to the community.
- **Questions and concerns:** To resolve questions and discuss concerns about this update we've opened this discussion space [New distribution's packages](https://github.com/nodesource/distributions/discussions/#123456)Looking for the previous Documentation [README.md](./OLD_README.md)
## Table of Contents
- **[Debian and Ubuntu based distributions](#debian-and-ubuntu-based-distributions)** (deb)
- [Available architectures](#deb-available-architectures)
- [Supported Versions](#deb-supported-versions)
- [Ubuntu versions](#ubuntu-versions)
- [Debian versions](#debian-versions)
- [Installation instructions](#installation-instructions)
- [Uninstall instructions](#uninstall-nodejs-ubuntu--debian-packages)
- **[Enterprise Linux based distributions](#enterprise-linux-based-distributions)** (rpm)
- [Available architectures](#rpm-available-architectures)
- [Supported Versions](#rpm-supported-versions)
- [Fedora versions](#fedora-versions)
- [Redhat versions](#redhat-versions)
- [Amazon Linux versions](#amazon-linux-versions)
- [Uninstall instructions](#uninstall-nodejs-enterprise-linux-packages)
- **[Nodejs Release Calendar](#nodejs-release-calendar)**
- [FAQ](#faq)
- [Authors and Contributors](#authors-and-contributors)
- [License](#license)## Debian and Ubuntu based distributions
### DEB Available architectures
NodeSource will continue to maintain the following architectures and may add additional ones in the future.
- **amd64** (64-bit)
- **armhf** (ARM 32-bit hard-float, ARMv7 and up: _arm-linux-gnueabihf_)
- **arm64** (ARM 64-bit, ARMv8 and up: _aarch64-linux-gnu_)### DEB Supported Versions
#### **Ubuntu versions**
| Distro Name | Node 18x | Node 20x | Node 21x | Node 22x | Node 23x |
| :------------------- | :------: | :------: | :------: | :------: | :------: |
| Ubuntu Bionic ^18.04 | ❌ | ❌ | ❌ | ❌ | ❌ |
| Ubuntu Focal ^20.04 | ✅ | ✅ | ✅ | ✅ | ✅ |
| Ubuntu Jammy ^22.04 | ✅ | ✅ | ✅ | ✅ | ✅ |
| Ubuntu Noble ^24.04 | ✅ | ✅ | ✅ | ✅ | ✅ |#### **Debian versions**
| Distro Name | Node 18x | Node 20x | Node 21x | Node 22x | Node 23x |
| :----------------- | :------: | :------: | :------: | :------: | :------: |
| Debian 8 Jessie | ❌ | ❌ | ❌ | ❌ | ❌ |
| Debian 9 Stretch | ❌ | ❌ | ❌ | ❌ | ❌ |
| Debian 10 Buster | ✅ | ✅ | ✅ | ✅ | ✅ |
| Debian 11 Bullseye | ✅ | ✅ | ✅ | ✅ | ✅ |
| Debian 12 Bookworm | ✅ | ✅ | ✅ | ✅ | ✅ |> [!NOTE]
> If you are looking to run Node.js in a non-supported Linux version [contact NodeSource](https://nodesource.com/pages/contact-us.html) to get enterprise support for your specific needs.### Installation Instructions (DEB)
**Node.js 23.x**:
##### Using Ubuntu (Node.js 23)
Before you begin, ensure that `curl` is installed on your system. If `curl` is not installed, you can install it using the following command:
```sh
sudo apt-get install -y curl
```1. **Download the setup script:**
```sh
curl -fsSL https://deb.nodesource.com/setup_23.x -o nodesource_setup.sh
```2. **Run the setup script with sudo:**
```sh
sudo -E bash nodesource_setup.sh
```3. **Install Node.js:**
```sh
sudo apt-get install -y nodejs
```4. **Verify the installation:**
```sh
node -v
```##### Using Debian, as root (Node.js 23)
Before you begin, ensure that `curl` is installed on your system. If `curl` is not installed, you can install it using the following command:
```sh
apt-get install -y curl
```1. **Download the setup script:**
```sh
curl -fsSL https://deb.nodesource.com/setup_23.x -o nodesource_setup.sh
```2. **Run the setup script with sudo:**
```sh
bash nodesource_setup.sh
```3. **Install Node.js:**
```sh
apt-get install -y nodejs
```4. **Verify the installation:**
```sh
node -v
```**Node.js v22.x**:
##### Using Ubuntu (Node.js 22)
Before you begin, ensure that `curl` is installed on your system. If `curl` is not installed, you can install it using the following command:
```sh
sudo apt-get install -y curl
```1. **Download the setup script:**
```sh
curl -fsSL https://deb.nodesource.com/setup_22.x -o nodesource_setup.sh
```2. **Run the setup script with sudo:**
```sh
sudo -E bash nodesource_setup.sh
```3. **Install N|Solid or Node.js:**
N|Solid
**Install N|Solid:**
```sh
sudo apt-get install -y nsolid
```
**Verify the installation:**
```sh
nsolid -v
```
Node.js**Install Node.js:**
```sh
sudo apt-get install -y nodejs
```**Verify the installation:**
```sh
node -v
```
##### Using Debian, as root (Node.js 22)
Before you begin, ensure that `curl` is installed on your system. If `curl` is not installed, you can install it using the following command:
```sh
apt-get install -y curl
```1. **Download the setup script:**
```sh
curl -fsSL https://deb.nodesource.com/setup_22.x -o nodesource_setup.sh
```2. **Run the setup script with sudo:**
```sh
bash nodesource_setup.sh
```3. **Install N|Solid or Node.js:**
N|Solid
**Install N|Solid:**
```sh
apt-get install -y nsolid
```
**Verify the installation:**
```sh
nsolid -v
```
Node.js**Install Node.js:**
```sh
apt-get install -y nodejs
```**Verify the installation:**
```sh
node -v
```
**Node.js v20.x**:
##### Using Ubuntu (Node.js 20)
Before you begin, ensure that `curl` is installed on your system. If `curl` is not installed, you can install it using the following command:
```sh
sudo apt-get install -y curl
```1. **Download the setup script:**
```sh
curl -fsSL https://deb.nodesource.com/setup_20.x -o nodesource_setup.sh
```2. **Run the setup script with sudo:**
```sh
sudo -E bash nodesource_setup.sh
```3. **Install N|Solid or Node.js:**
N|Solid
**Install N|Solid:**
```sh
sudo apt-get install -y nsolid
```
**Verify the installation:**
```sh
nsolid -v
```
Node.js**Install Node.js:**
```sh
sudo apt-get install -y nodejs
```**Verify the installation:**
```sh
node -v
```
##### Using Debian, as root (Node.js 20)
Before you begin, ensure that `curl` is installed on your system. If `curl` is not installed, you can install it using the following command:
```sh
apt-get install -y curl
```1. **Download the setup script:**
```sh
curl -fsSL https://deb.nodesource.com/setup_20.x -o nodesource_setup.sh
```2. **Run the setup script with sudo:**
```sh
bash nodesource_setup.sh
```3. **Install N|Solid or Node.js:**
N|Solid
**Install N|Solid:**
```sh
apt-get install -y nsolid
```
**Verify the installation:**
```sh
nsolid -v
```
Node.js**Install Node.js:**
```sh
apt-get install -y nodejs
```**Verify the installation:**
```sh
node -v
```
**Node.js v18.x**:
##### Using Ubuntu (Node.js 18)
Before you begin, ensure that `curl` is installed on your system. If `curl` is not installed, you can install it using the following command:
```sh
sudo apt-get install -y curl
```1. **Download the setup script:**
```sh
curl -fsSL https://deb.nodesource.com/setup_18.x -o nodesource_setup.sh
```2. **Run the setup script with sudo:**
```sh
sudo -E bash nodesource_setup.sh
```3. **Install N|Solid or Node.js:**
N|Solid
**Install N|Solid:**
```sh
sudo apt-get install -y nsolid
```
**Verify the installation:**
```sh
nsolid -v
```
Node.js**Install Node.js:**
```sh
sudo apt-get install -y nodejs
```**Verify the installation:**
```sh
node -v
```
##### Using Debian, as root (Node.js 18)
Before you begin, ensure that `curl` is installed on your system. If `curl` is not installed, you can install it using the following command:
```sh
apt-get install -y curl
```1. **Download the setup script:**
```sh
curl -fsSL https://deb.nodesource.com/setup_18.x -o nodesource_setup.sh
```2. **Run the setup script with sudo:**
```sh
bash nodesource_setup.sh
```3. **Install N|Solid or Node.js:**
N|Solid
**Install N|Solid:**
```sh
apt-get install -y nsolid
```
**Verify the installation:**
```sh
nsolid -v
```
Node.js**Install Node.js:**
```sh
apt-get install -y nodejs
```**Verify the installation:**
```sh
node -v
```
**Node.js LTS (v22.x)**:
##### Using Ubuntu (Node.js LTS)
Before you begin, ensure that `curl` is installed on your system. If `curl` is not installed, you can install it using the following command:
```sh
sudo apt-get install -y curl
```1. **Download the setup script:**
```sh
curl -fsSL https://deb.nodesource.com/setup_lts.x -o nodesource_setup.sh
```2. **Run the setup script with sudo:**
```sh
sudo -E bash nodesource_setup.sh
```3. **Install N|Solid or Node.js:**
N|Solid
**Install N|Solid:**
```sh
sudo apt-get install -y nsolid
```
**Verify the installation:**
```sh
nsolid -v
```
Node.js**Install Node.js:**
```sh
sudo apt-get install -y nodejs
```**Verify the installation:**
```sh
node -v
```
##### Using Debian, as root (N|Solid or Node.js LTS)
Before you begin, ensure that `curl` is installed on your system. If `curl` is not installed, you can install it using the following command:
```sh
apt-get install -y curl
```1. **Download the setup script:**
```sh
curl -fsSL https://deb.nodesource.com/setup_lts.x -o nodesource_setup.sh
```2. **Run the setup script with sudo:**
```sh
bash nodesource_setup.sh
```3. **Install N|Solid or Node.js:**
N|Solid
**Install N|Solid:**
```sh
apt-get install -y nsolid
```
**Verify the installation:**
```sh
nsolid -v
```
Node.js**Install Node.js:**
```sh
apt-get install -y nodejs
```**Verify the installation:**
```sh
node -v
```
**Node.js Current (23)**:
##### Using Ubuntu (Node.js Current)
Before you begin, ensure that `curl` is installed on your system. If `curl` is not installed, you can install it using the following command:
```sh
sudo apt-get install -y curl
```1. **Download the setup script:**
```sh
curl -fsSL https://deb.nodesource.com/setup_current.x -o nodesource_setup.sh
```2. **Run the setup script with sudo:**
```sh
sudo -E bash nodesource_setup.sh
```3. **Install Node.js:**
```sh
sudo apt-get install -y nodejs
```4. **Verify the installation:**
```sh
node -v
```##### Using Debian, as root (Node.js Current)
Before you begin, ensure that `curl` is installed on your system. If `curl` is not installed, you can install it using the following command:
```sh
apt-get install -y curl
```1. **Download the setup script:**
```sh
curl -fsSL https://deb.nodesource.com/setup_current.x -o nodesource_setup.sh
```2. **Run the setup script with sudo:**
```sh
bash nodesource_setup.sh
```3. **Install Node.js:**
```sh
apt-get install -y nodejs
```4. **Verify the installation:**
```sh
node -v
```### Uninstall `nsolid` or `nodejs` Ubuntu & Debian packages
To completely remove Node.js or N|solid installed from the deb.nodesource.com package methods above:
#### use `sudo` on Ubuntu or run this as root on debian
N|Solid
```sh
apt-get purge nsolid &&\
rm -r /etc/apt/sources.list.d/nodesource.list &&\
rm -r /etc/apt/keyrings/nodesource.gpg
```Node.js
```sh
apt-get purge nodejs &&\
rm -r /etc/apt/sources.list.d/nodesource.list &&\
rm -r /etc/apt/keyrings/nodesource.gpg
```## Enterprise Linux Based Distributions
### RPM Available architectures
NodeSource will continue to maintain the following architectures and may add additional ones in the future.
- **x86_64** (64-bit)
- **arm64** (ARM 64-bit, ARMv8 and up: _aarch64-linux-gnu_)### RPM Supported Versions
#### **Fedora versions**
| Distro Name | Node 18x | Node 20x | Node 21x | Node 22x | Node 23x |
| :-------------------- | :------: | :------: | :------: | :------: | :------: |
| Fedora >= 20 (20->28) | ❌ | ❌ | ❌ | ❌ | ❌ |
| Fedora >= 29 | ✅ | ✅ | ✅ | ✅ | ✅ |
| Fedora >= 36 | ✅ | ✅ | ✅ | ✅ | ✅ |#### **Redhat versions**
| Distro Name | Node 18x | Node 20x | Node 21x | Node 22x | Node 23x |
|:-----------------| :------: | :------: | :------: | :------: | :------: |
| Redhat 7 | ❌ | ❌ | ❌ | ❌ | ❌ |
| Redhat 8 | ✅ | ✅ | ✅ | ✅ | ✅ |
| Redhat 9 | ✅ | ✅ | ✅ | ✅ | ✅ |
| Redhat 9-minimal | ✅ | ✅ | ✅ | ✅ | ✅ |#### **Amazon Linux versions**
| Distro Name | Node 18x | Node 20x | Node 21x | Node 22x |
| :---------------- | :------: | :------: | :------: | :------: |
| Amazon Linux 2 | ❌ | ❌ | ❌ | ❌ |
| Amazon Linux 2023 | ✅ | ✅ | ✅ | ✅ |> [!NOTE]
> If you are looking to run Node.js in a non-supported Linux version [contact NodeSource](https://nodesource.com/pages/contact-us.html) to get enterprise support for your specific needs.### RPM Installation Instructions
### Installation Instructions (RPM)
**Node.js v23.x**
##### Using RPM-based Systems (Node.js 23)
Before you begin, ensure that `curl` is installed on your system. If `curl` is not installed, you can install it using the following command:
```sh
sudo yum install -y curl
```1. **Download the setup script:**
```sh
curl -fsSL https://rpm.nodesource.com/setup_23.x -o nodesource_setup.sh
```2. **Run the setup script as root:**
```sh
sudo bash nodesource_setup.sh
```3. **Install Node.js:**
```sh
sudo yum install -y nodejs
```4. **Verify the installation:**
```sh
node -v
```##### No root privileges (Node.js 23)
Before you begin, ensure that `curl` is installed on your system. If `curl` is not installed, you can install it using the following command:
```sh
yum install -y curl
```1. **Download the setup script:**
```sh
curl -fsSL https://rpm.nodesource.com/setup_23.x -o nodesource_setup.sh
```2. **Run the setup script as root:**
```sh
bash nodesource_setup.sh
```3. **Install Node.js:**
```sh
yum install -y nodejs
```4. **Verify the installation:**
```sh
node -v
```**Node.js v22.x**
##### Using RPM-based Systems (Node.js 22)
Before you begin, ensure that `curl` is installed on your system. If `curl` is not installed, you can install it using the following command:
```sh
sudo yum install -y curl
```1. **Download the setup script:**
```sh
curl -fsSL https://rpm.nodesource.com/setup_22.x -o nodesource_setup.sh
```2. **Run the setup script as root:**
```sh
sudo bash nodesource_setup.sh
```3. **Install Node.js:**
```sh
sudo yum install -y nodejs
```4. **Verify the installation:**
```sh
node -v
```##### No root privileges (Node.js 22)
Before you begin, ensure that `curl` is installed on your system. If `curl` is not installed, you can install it using the following command:
```sh
yum install -y curl
```1. **Download the setup script:**
```sh
curl -fsSL https://rpm.nodesource.com/setup_22.x -o nodesource_setup.sh
```2. **Run the setup script as root:**
```sh
bash nodesource_setup.sh
```3. **Install Node.js:**
```sh
yum install -y nodejs
```4. **Verify the installation:**
```sh
node -v
```**Node.js v20.x**
##### As root (Node.js 20)
Before you begin, ensure that `curl` is installed on your system. If `curl` is not installed, you can install it using the following command:
```sh
sudo yum install -y curl
```1. **Download the setup script:**
```sh
curl -fsSL https://rpm.nodesource.com/setup_20.x -o nodesource_setup.sh
```2. **Run the setup script as root:**
```sh
bash nodesource_setup.sh
```3. **Install N|Solid or Node.js:**
N|Solid
**Install N|Solid:**
```sh
yum install -y nsolid
```
**Verify the installation:**
```sh
nsolid -v
```
Node.js**Install Node.js:**
```sh
yum install -y nodejs
```**Verify the installation:**
```sh
node -v
```
##### No root privileges (Node.js 20)
Before you begin, ensure that `curl` is installed on your system. If `curl` is not installed, you can install it using the following command:
```sh
yum install -y curl
```1. **Download the setup script:**
```sh
curl -fsSL https://rpm.nodesource.com/setup_20.x -o nodesource_setup.sh
```2. **Run the setup script as root:**
```sh
bash nodesource_setup.sh
```3. **Install N|Solid or Node.js:**
N|Solid
**Install N|Solid:**
```sh
sudo yum install -y nsolid
```
**Verify the installation:**
```sh
nsolid -v
```
Node.js**Install Node.js:**
```sh
sudo yum install -y nodejs
```**Verify the installation:**
```sh
node -v
```
**Node.js v18.x**
##### As root (Node.js 18)
Before you begin, ensure that `curl` is installed on your system. If `curl` is not installed, you can install it using the following command:
```sh
sudo yum install -y curl
```1. **Download the setup script:**
```sh
curl -fsSL https://rpm.nodesource.com/setup_18.x -o nodesource_setup.sh
```2. **Run the setup script as root:**
```sh
bash nodesource_setup.sh
```3. **Install N|Solid or Node.js:**
N|Solid
**Install N|Solid:**
```sh
sudo yum install -y nsolid
```
**Verify the installation:**
```sh
nsolid -v
```
Node.js**Install Node.js:**
```sh
sudo yum install -y nodejs
```**Verify the installation:**
```sh
node -v
```
##### No root privileges (Node.js 18)
Before you begin, ensure that `curl` is installed on your system. If `curl` is not installed, you can install it using the following command:
```sh
yum install -y curl
```1. **Download the setup script:**
```sh
curl -fsSL https://rpm.nodesource.com/setup_18.x -o nodesource_setup.sh
```2. **Run the setup script as root:**
```sh
sudo bash nodesource_setup.sh
```3. **Install N|Solid or Node.js:**
N|Solid
**Install N|Solid:**
```sh
sudo yum install -y nsolid
```
**Verify the installation:**
```sh
nsolid -v
```
Node.js**Install Node.js:**
```sh
sudo yum install -y nodejs
```**Verify the installation:**
```sh
node -v
```
**N|Solid or Node.js LTS (22.x)**
##### As root (N|Solid or Node.js LTS)
Before you begin, ensure that `curl` is installed on your system. If `curl` is not installed, you can install it using the following command:
```sh
yum install -y curl
```1. **Download the setup script:**
```sh
curl -fsSL https://rpm.nodesource.com/setup_lts.x -o nodesource_setup.sh
```2. **Run the setup script as root:**
```sh
bash nodesource_setup.sh
```3. **Install N|Solid or Node.js:**
N|Solid
**Install N|Solid:**
```sh
yum install -y nsolid
```
**Verify the installation:**
```sh
nsolid -v
```
Node.js**Install Node.js:**
```sh
yum install -y nodejs
```**Verify the installation:**
```sh
node -v
```
##### No root privileges (N|Solid or Node.js LTS)
Before you begin, ensure that `curl` is installed on your system. If `curl` is not installed, you can install it using the following command:
```sh
sudo yum install -y curl
```1. **Download the setup script:**
```sh
curl -fsSL https://rpm.nodesource.com/setup_lts.x -o nodesource_setup.sh
```2. **Run the setup script as root:**
```sh
sudo bash nodesource_setup.sh
```3. **Install N|Solid or Node.js:**
N|Solid
**Install N|Solid:**
```sh
sudo yum install -y nsolid
```
**Verify the installation:**
```sh
nsolid -v
```
Node.js**Install Node.js:**
```sh
sudo yum install -y nodejs
```**Verify the installation:**
```sh
node -v
```
**Node.js Current (23.x)**
##### As root (Node.js Current)
Before you begin, ensure that `curl` is installed on your system. If `curl` is not installed, you can install it using the following command:
```sh
yum install -y curl
```1. **Download the setup script:**
```sh
curl -fsSL https://rpm.nodesource.com/setup_current.x -o nodesource_setup.sh
```2. **Run the setup script as root:**
```sh
bash nodesource_setup.sh
```3. **Install Node.js:**
```sh
yum install -y nodejs
```4. **Verify the installation:**
```sh
node -v
```##### No root privileges (Node.js Current)
Before you begin, ensure that `curl` is installed on your system. If `curl` is not installed, you can install it using the following command:
```sh
sudo yum install -y curl
```1. **Download the setup script:**
```sh
curl -fsSL https://rpm.nodesource.com/setup_current.x -o nodesource_setup.sh
```2. **Run the setup script as root:**
```sh
sudo bash nodesource_setup.sh
```3. **Install Node.js:**
```sh
sudo yum install -y nodejs
```4. **Verify the installation:**
```sh
node -v
```_**Optional**_: install build tools
To compile and install native addons from npm you may also need to install build tools:
```text
yum install gcc-c++ make
# or: yum groupinstall 'Development Tools'
```### Uninstall `nsolid` or `nodejs` Enterprise Linux packages
To completely remove Node.js installed from the rpm.nodesource.com package methods above:
#### use `sudo` or run this as root
N|Solid
```sh
yum remove nsolid &&\
rm -r /etc/yum.repos.d/nodesource*.repo &&\
yum clean all
```Node.js
```sh
yum remove nodejs &&\
rm -r /etc/yum.repos.d/nodesource*.repo &&\
yum clean all
```## Nodejs Release Calendar
[![Node Releases Calendar](https://raw.githubusercontent.com/nodejs/Release/main/schedule.svg?sanitize=true)](https://nodejs.dev/en/about/releases)
_source: _## FAQ
Q: Are the scripts deprecated?
A: The scripts are deprecated for the versions of Node.js that are currently outdated. While the packages for these versions still exist, we no longer provide support for them. Our support is exclusively dedicated to the active Node.js versions, which, as of today, are 18, 20, and 21. Users utilizing these versions can confidently use our scripts, but we encourage those using older versions to upgrade for continued support and the best experience.
---
Q: How can I configure the repository manually?
A: If you prefer to manually configure the repository, we have a detailed guide to assist you through the process. Please visit our [Repository Manual Installation Guide](https://github.com/nodesource/distributions/wiki/Repository-Manual-Installation) for comprehensive instructions. This guide is designed to provide step-by-step directions to ensure a smooth and successful manual setup of the repository for your Node.js environment.
---
Q: How do I pin to specific versions of Node.js?
A: Please take a look at [wiki](https://github.com/nodesource/distributions/wiki/How-to-select-the-Node.js-version-to-install)
---
---
Q: Why is there no folder listing available when I visit the following URLs?
A: This issue may arise because some users utilize the above URLs to download specific versions of Node.js or create mirrors of our repository.
For more information and possible solutions, please refer to the following resources:
- [Github issue](https://github.com/nodesource/distributions/issues/1633)
- [Creating a Repository Mirror](https://github.com/nodesource/distributions/wiki/Creating-a-Repository-Mirror:-A-Step%E2%80%90by%E2%80%90Step-Guide)---
## Authors and Contributors
### Current Members
Adrian EstradaGitHub/edsadrTwitter/@edsadr
Jesus PazGitHub/JesusPaz
Jefferson RiosGitHub/riosje
### Past Members
Chris LeaGitHub/chrisleaTwitter/@chrislea
Rod VaggGitHub/rvaggTwitter/@rvagg
William BlankenshipGitHub/retrohackerTwitter/@retrohack3r
Harry TruongGitHub/harrytruong
Matteo BrunatiGitHub/mattbrun
Brian WhiteGitHub/mscdex
Matt LewandowskyGitHub/lewellyn
Jan-Hendrik PetersGitHub/hennr
Andris ReinmanGitHub/andris9
CarvilsiGitHub/carvilsi
Krasimir TrenchevGitHub/Ava7
Phil HelmGitHub/phelma
0xmohitGitHub/0xmohit
jdarlingGitHub/jdarling
Prayag VermaGitHub/pra85
Misha BrukmanGitHub/mbrukman
Simon LydellGitHub/lydell
Sebastian BleiGitHub/iamsebastian
Jorge Maldonado VenturaNotABug/jorgesumle
Mayank MethaGitHub/mayankmethaTwitter/@mayankmethad
Iván IguaránGitHub/igsu
Contributions are welcomed from anyone wanting to improve this project!
## License
This material is Copyright (c) NodeSource and licensed under the MIT license. All rights not explicitly granted in the MIT license are reserved. See the included [LICENSE.md](./LICENSE.md) file for more details.
---
_Supported with love by the [NodeSource](https://nodesource.com) team_
_This project is not affiliated with Debian, Ubuntu, Red Hat, CentOS or Fedora._
_Ubuntu is a registered trademark of Canonical Ltd._
_Debian is a registered trademark owned by Software in the Public Interest, Inc._
_Red Hat, CentOS and Fedora are trademarks of Red Hat, Inc._
_Amazon Linux is a trademark of Amazon Web Services, Inc._
_CloudLinux is a trademark of CloudLinux, Inc_