2020-03-17 19:31:17 +01:00
|
|
|
# Installing Node.js
|
|
|
|
|
|
|
|
Some fast commands are below. The complete documentation (including other platforms) is [here](https://nodejs.org/en/download/)
|
|
|
|
|
2020-12-13 05:48:25 +01:00
|
|
|
## With apt (e.g., debian)
|
2020-03-17 19:31:17 +01:00
|
|
|
|
|
|
|
```bash
|
|
|
|
curl -sL https://deb.nodesource.com/setup_12.x | sudo bash -
|
|
|
|
sudo apt install nodejs
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2020-12-13 05:48:25 +01:00
|
|
|
## With homebrew (e.g., macos)
|
2020-03-17 19:31:17 +01:00
|
|
|
|
|
|
|
```bash
|
|
|
|
brew update
|
|
|
|
brew install node@12
|
|
|
|
```
|
|
|
|
|
2020-12-13 05:48:25 +01:00
|
|
|
## With yum (e.g., centos)
|
2020-03-17 19:31:17 +01:00
|
|
|
|
|
|
|
```bash
|
|
|
|
curl -sL https://deb.nodesource.com/setup_12.x | sudo bash -
|
|
|
|
sudo yum install nodejs
|
|
|
|
```
|