From 5845e83d78414048ac71f99594a0e203f9a9c756 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Thu, 23 Mar 2023 11:51:37 +0100 Subject: [PATCH] docs(simulator): document pnpm enablement MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5ce15084..90a18535 100644 --- a/README.md +++ b/README.md @@ -10,14 +10,14 @@ Simple [node.js](https://nodejs.org/) software to simulate and scale a set of ch ## Prerequisites -Install the [node.js](https://nodejs.org/) LTS runtime environment: +Install the [node.js](https://nodejs.org/) current LTS or superior version runtime environment: ### Windows - [Chocolatey](https://chocolatey.org/): ```powershell -choco install -y nodejs-lts +choco install -y nodejs ``` ### MacOSX @@ -25,7 +25,7 @@ choco install -y nodejs-lts - [Homebrew](https://brew.sh/): ```shell -brew install node@16 +brew install node ``` ### GNU/Linux @@ -34,6 +34,12 @@ brew install node@16 ## Installation +Enable corepack if not already done: + +```shell +corepack enable +``` + In the repository root, run the following command: ```shell -- 2.34.1