Skip to content

Installing Node.js

iAutistic edited this page Sep 8, 2021 · 2 revisions

Windows

32-bit Windows

Step 1: Download Node.js Installer. In a web browser, navigate to Node.js.

Step 2: Install Node.js and NPM from Browser. Once the installer finishes downloading, launch it.

Step 3: Verify Installation.

64-bit Windows

Step 1: Download Node.js Installer. In a web browser, navigate to Node.js.

Step 2: Install Node.js and NPM from Browser. Once the installer finishes downloading, launch it.

Step 3: Verify Installation.

Mac

Soon

Linux

Node.js LTS (v14.x):

# Using Ubuntu
curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
sudo apt-get install -y nodejs

# Using Debian, as root
curl -fsSL https://deb.nodesource.com/setup_lts.x | bash -
apt-get install -y nodejs

Node.js Current (v16.x):

# Using Ubuntu
curl -fsSL https://deb.nodesource.com/setup_current.x | sudo -E bash -
sudo apt-get install -y nodejs

# Using Debian, as root
curl -fsSL https://deb.nodesource.com/setup_current.x | bash -
apt-get install -y nodejs

Clone this wiki locally