Files

26 lines
481 B
Markdown
Raw Permalink Normal View History

# 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)
```bash
2023-02-09 00:46:57 +01:00
curl -sL https://deb.nodesource.com/setup_18.x | sudo bash -
sudo apt install nodejs
```
2020-12-13 05:48:25 +01:00
## With homebrew (e.g., macos)
```bash
brew update
2023-02-09 00:46:57 +01:00
brew install node@18
```
2020-12-13 05:48:25 +01:00
## With yum (e.g., centos)
```bash
2023-02-09 00:46:57 +01:00
curl -sL https://deb.nodesource.com/setup_18.x | sudo bash -
sudo yum install nodejs
```