2021-10-17 18:26:00 +02:00
|
|
|
---
|
2021-08-25 16:09:31 +02:00
|
|
|
title: Installing Node
|
|
|
|
order: 20
|
2021-10-17 18:26:00 +02:00
|
|
|
---
|
2021-08-25 16:09:31 +02:00
|
|
|
|
|
|
|
Now we will use nvm to install Node JS. Run the following command:
|
|
|
|
|
|
|
|
```bash
|
2022-08-24 18:17:12 -07:00
|
|
|
nvm install lts/gallium
|
2021-08-25 16:09:31 +02:00
|
|
|
```
|
|
|
|
|
2022-08-24 18:17:12 -07:00
|
|
|
This will install the so-called LTS version of Node 16 on your system.
|
2022-07-02 22:52:31 +02:00
|
|
|
|
2021-08-25 16:09:31 +02:00
|
|
|
LTS versions -- short for Long Term Support -- are good node versions
|
|
|
|
to use because they are stable and supported for a long time.
|