-
Notifications
You must be signed in to change notification settings - Fork 0
Installing Node.js
iAutistic edited this page Sep 8, 2021
·
2 revisions
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.
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.
Soon
# 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
# 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
