You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Navigate to [https://nodejs.org/en/](https://nodejs.org/en/)
10
10
* Click to download and install NodeJS
11
11
12
-
#### 2. Install Express for NodeJS
12
+
#### 2. Upgrade NodeJS (if using an older version)
13
13
14
14
```bash
15
-
npm install -g express
15
+
npm install -g npm@latest
16
16
```
17
17
18
-
#### 3. Install the Example Test Runner for SeleniumBase from the ``integrations/node_js`` folder
18
+
#### 3. Install the Example Test Runner for SeleniumBase from the ``integrations/node_js`` folder (``npm ci`` has a speed improvement over ``npm install``.)
19
19
20
20
```bash
21
-
npm install
21
+
npm ci
22
22
```
23
23
24
24
(You should see a ``node_modules`` folder appear in your ``node_js`` folder.)
0 commit comments