From 54e23db0d4a5f33d208516a8d6bc4e8dc145d4b8 Mon Sep 17 00:00:00 2001 From: Christopher Hirt Date: Fri, 3 May 2024 15:14:09 +0700 Subject: [PATCH] update docs to node 22 --- docs/DEVELOPER.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/DEVELOPER.md b/docs/DEVELOPER.md index c065ec17f6..93e675dc46 100644 --- a/docs/DEVELOPER.md +++ b/docs/DEVELOPER.md @@ -50,9 +50,8 @@ While Docker is great way to encapsulate all of the dependencies, build tools an 2. Permit your user (and not just "sudo") to contact the Docker daemon: `sudo usermod -aG docker yourUsername && sudo chmod 666 /var/run/docker.sock`. 3. (Optional) Configure docker to start on boot: `printf '[boot]\ncommand="service docker start"\n' | sudo tee /etc/wsl.conf` (assuming `/etc/wsl.conf` is currently unused). 2. Install [Make](https://www.gnu.org/software/make/): `sudo apt install make`. -3. Install [Node 16.14.0](https://nodejs.org/en/download/). We recommend using [nvm](https://github.com/nvm-sh/nvm#installation-and-update). +3. Install [Node 22](https://nodejs.org/en/download/). We recommend using [nvm](https://github.com/nvm-sh/nvm#installation-and-update) or [nvm on Windows](https://github.com/coreybutler/nvm-windows). 4. Clone the repo: `git clone https://github.com/sillsdev/web-languageforge`. - 1. Windows users, be sure to clone the project to the WSL file system (to keep VS Code, Git and the file system in sync) 5. Run `npm install` (required for git pre-commit hook with Prettier) ### Running the App Locally