Teknologi

Install Node.js and npm from NodeSource repository

Prerequisites

  • An RHEL-based system, such as CentOS 7
  • Access to a terminal/command line
  • The yum package manager, included by default
  • Access to the root user or a user with sudo privileges

Option 1: Install Node.js and npm from NodeSource repository

The simplest way to install Node.js and npm is from the NodeSource repository.

1. First, update the local repository to ensure you install the latest versions of Node.js and npm. Type in the following command:

sudo yum update

2. Next, add the NodeSource repository to the system with:

curl –sL https://rpm.nodesource.com/setup_10.x | sudo bash -

3. The output will prompt you to use the following command if you want to install Node.js and npm:

sudo yum install –y nodejs

4. Finally, verify the installed software with the commands:

node –version
npm –version

As you can see in the images above, the system downloaded the latest stable versions – Node.js 10.16.0, and npm 6.9.0.

Option 2: Install Node.js and npm using NVM

Step 1: Install Node Version Manager (NVM)

Alternatively, you can install Node.js and npm with the Node Version Manager (NVM), a tool practical for managing multiple Node.js versions.

1. To install NVM, download the installation script from GitHub. You will use the command line curl.

If you do not have this prerequisite tool, install it by running:

sudo apt install curl

Press y to confirm the installation and hit Enter.

2. After installing curl, download the NVM installation script with the command:

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash

The command instructs the system to clone the NVM repository and add the NVM path to ZSH or bash. Once this is done, you will receive the following message:

As the output suggests, to enable nvm you need to:

  • Close and open the terminal OR
  • Run the given command

3. Then, check whether the Node Version Manager installation was successful with the command:

nvm –version

The image below shows you have installed NVM 0.34.0, the latest stable version.

Note: Check out the differences between NVM and NPM.

Step 2: Install Node.js and npm

1. Once you have installed NVM, download Node.js and npm with the command:

nvm install node

2. As always, make sure to check the version installed:

node –version

Optional: Install multiple Node.js versions using NVM

NVM is a package manager. Therefore, it can install and manage multiple Node.js versions.

To install a specific version of Node, type in nvm install and the number of the version.

For example:

nvm install 10.1.0

or to install the latest stable version::

nvm install --lts

To view a list of the versions you have installed on your manager with:

nvm ls

This will list all installed Node.js versions, as well as specify the default and stable versions.

To switch to another version of Node.js you have already installed, use the command:

nvm use 10.16.0

Install Node.js Development Tools

Development tools is an automation tool kit that allows compiling and installing native add-ons from the npm.

To install Node.js development tools and libraries, use the command:

sudo yum install gcc g++ make
ryan

Recent Posts

Jadwal Imsak dan Buka Puasa Ramadhan 2025 Kota Serang Selama Sebulan

Berikut jadwal imsak dan buka puasa Ramadhan 2025 di Kota Serang dari tanggal 1 Ramadhan -…

9 jam ago

Jadwal Resmi Awal Puasa Ramadan 2025 Pemerintah, NU, Muhammadiyah

Jakarta - Pemerintah telah menetapkan awal Ramadan 2025 berdasarkan hasil sidang isbat oleh Kemenag. Begitu pula dengan organisasi masyarakat…

2 hari ago

Meta AI Ditanya Luas Kebakaran Los Angeles, Hasilnya Mengejutkan Sama dengan Luas Gaza

Siapa sangka, salah satu warganet justru mendapat informasi tak terduga yang berasal dari Meta AI.…

2 bulan ago

Tebak-tebakan pelesetan kata ini lucu abis, awas ketawa ngakak

Ketika menjalani rutinitas sehari-hari tentu saja kamu pernah merasa suntuk atau jenuh. Supaya kamu bisa…

2 bulan ago

Kapal China Diduga Biang Kerok Internet Mati Total di Berbagai Negara

Sebuah kapal kargo komersial China diduga sengaja menyeret jangkarnya untuk memotong kabel bawah laut yang…

3 bulan ago

Ini Sumber Kekayaan Nabi Sulaiman, Sungguh di Luar Dugaan

Nabi Sulaiman dikenal sebagai raja yang kaya raya. Para ilmuwan arkeologi kini mengungkap apa sumber kekayaannya,…

3 bulan ago