docs(simulator): document pnpm enablement
authorJérôme Benoit <jerome.benoit@sap.com>
Thu, 23 Mar 2023 10:51:37 +0000 (11:51 +0100)
committerJérôme Benoit <jerome.benoit@sap.com>
Thu, 23 Mar 2023 10:51:37 +0000 (11:51 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
README.md

index 5ce15084b9297da8eb2e51046db553f5f3809cf0..90a1853588922173e76444a6b43380c5e9131865 100644 (file)
--- 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