mirror of
https://github.com/nttgin/BGPalerter.git
synced 2024-05-19 06:50:08 +00:00
26 lines
481 B
Markdown
26 lines
481 B
Markdown
# Installing Node.js
|
|
|
|
Some fast commands are below. The complete documentation (including other platforms) is [here](https://nodejs.org/en/download/)
|
|
|
|
## With apt (e.g., debian)
|
|
|
|
```bash
|
|
curl -sL https://deb.nodesource.com/setup_12.x | sudo bash -
|
|
sudo apt install nodejs
|
|
```
|
|
|
|
|
|
## With homebrew (e.g., macos)
|
|
|
|
```bash
|
|
brew update
|
|
brew install node@12
|
|
```
|
|
|
|
## With yum (e.g., centos)
|
|
|
|
```bash
|
|
curl -sL https://deb.nodesource.com/setup_12.x | sudo bash -
|
|
sudo yum install nodejs
|
|
```
|