Add 'Install Node on Ubuntu and Debian'

master
Mehran Dehghanian 3 years ago
parent 9a571b63ef
commit 91f10331e5

@ -0,0 +1,91 @@
Node.js Current:
## 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
```
Node.js v13.x:
## Using Ubuntu
```
curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash -
sudo apt-get install -y nodejs
```
## Using Debian, as root
```
curl -sL https://deb.nodesource.com/setup_13.x | bash -
apt-get install -y nodejs
```
Node.js v12.x:
## Using Ubuntu
```
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
sudo apt-get install -y nodejs
```
## Using Debian, as root
```
curl -sL https://deb.nodesource.com/setup_12.x | bash -
apt-get install -y nodejs
```
Node.js v11.x:
## Using Ubuntu
```
curl -sL https://deb.nodesource.com/setup_11.x | sudo -E bash -
sudo apt-get install -y nodejs
```
## Using Debian, as root
```
curl -sL https://deb.nodesource.com/setup_11.x | bash -
apt-get install -y nodejs
```
Node.js v10.x:
## Using Ubuntu
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
sudo apt-get install -y nodejs
## Using Debian, as root
```
curl -sL https://deb.nodesource.com/setup_10.x | bash -
apt-get install -y nodejs
```
Node.js v9.x:
## Using Ubuntu
```
curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash -
sudo apt-get install -y nodejs
```
## Using Debian, as root
```
curl -sL https://deb.nodesource.com/setup_9.x | bash -
apt-get install -y nodejs
```
Node.js v8.x:
## Using Ubuntu
```
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs
```
## Using Debian, as root
```
curl -sL https://deb.nodesource.com/setup_8.x | bash -
apt-get install -y nodejs
```
Loading…
Cancel
Save