Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/dev/1_mac-linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ The server is a Node.js backend.

You'll need:

- Node.js 18 LTS ([Download](https://nodejs.org/en/download/) on MacOs).
- Node.js 18 LTS on Ubuntu/Debian:
- Node.js 22 LTS ([Download](https://nodejs.org/en/download/) on MacOs).
- Node.js 22 LTS on Ubuntu/Debian:

```bash
curl -sLO https://deb.nodesource.com/nsolid_setup_deb.sh
sudo bash nsolid_setup_deb.sh 18
sudo bash nsolid_setup_deb.sh 22
sudo apt install nodejs -y
```
Alternatively you can use [nvm](https://github.com/nvm-sh/nvm) to install and manage nodejs version.
Expand Down
8 changes: 4 additions & 4 deletions docs/dev/2_windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ Please ensure your system uses WSL2 by running following command:
wsl.exe --set-default-version 2
```

From the Microsoft Store, search and install Ubuntu 20.04. This can take some time, dependong on your connection speed.
From the Microsoft Store, search and install the latest Ubuntu LTS version. This can take some time, depending on your connection speed.

![Microsoft Store Ubuntu](../../static/img/docs/en/dev/ms-store-ubuntu20.04.png)

Now you can run Ubuntu; from your start menu please launch Ubuntu 20.04 LTS.
Now you can run Ubuntu; from your start menu please launch Ubuntu LTS.
The first time you run Ubuntu, you will be asked to create a user.

### Install system dependencies
Expand All @@ -43,11 +43,11 @@ sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y
sudo apt install sqlite3 make g++ git coreutils tzdata nmap openssl gzip udev -y
```

- Node.js 18 Installation:
- Node.js 22 Installation:

```bash
curl -sLO https://deb.nodesource.com/nsolid_setup_deb.sh
sudo bash nsolid_setup_deb.sh 18
sudo bash nsolid_setup_deb.sh 22
sudo apt install nodejs -y
```
Alternatively you can use [nvm](https://github.com/nvm-sh/nvm) to install and manage nodejs version.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Le backend est une serveur Node.js.

Comme prérequis système, il vous faut :

- Node.js 18 LTS ([Télécharger](https://nodejs.org/en/download/)) sur MacOs.
- Node.js 22 LTS ([Télécharger](https://nodejs.org/en/download/)) sur MacOs.
Sur Ubuntu/Debian :
```bash
curl -sLO https://deb.nodesource.com/nsolid_setup_deb.sh
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y
sudo apt install sqlite3 make g++ git coreutils tzdata nmap openssl gzip udev -y
```

- Installation de Node.js 18:
- Installation de Node.js 22:

```bash
curl -sLO https://deb.nodesource.com/nsolid_setup_deb.sh
sudo bash nsolid_setup_deb.sh 18
sudo bash nsolid_setup_deb.sh 22
sudo apt install nodejs -y
```

Expand Down