Skip to content

Commit 14ca458

Browse files
committed
update mentions of node
1 parent bb7cc39 commit 14ca458

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Use Node.js
1212
uses: actions/setup-node@v1
1313
with:
14-
node-version: '16.14.x'
14+
node-version: '20.19.x'
1515
- run: npm install
1616
- run: npm run test
1717
- run: npm run lint

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.14.2
1+
20.19.2

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
sudo: required
22
language: node_js
33
node_js:
4-
- "16.14.2"
4+
- "20.19.2"
55

66
cache:
77
directories:

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM node:16.14.2 AS base
1+
FROM node:20.19.2 AS base
22
ENV APP_HOME=/usr/src/app \
33
TERM=xterm
44
RUN mkdir -p $APP_HOME
55
WORKDIR $APP_HOME
6-
EXPOSE 8000
6+
EXPOSE 8000
77
EXPOSE 8002
88

99
FROM base AS development

contributor_docs/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ If you run into any issues while setting up your environment, take some time to
1818
_Note_: The installation steps assume you are using a Unix-like shell. If you are using Windows, you will need to use `copy` instead of `cp`.
1919

2020
1. Install Node.js. The recommended way is to Node through [nvm](https://github.com/nvm-sh/nvm), which is a command-line tool that helps you manage different versions of Node.js on your system. You can install nvm by using [nvm's installation guide](https://github.com/nvm-sh/nvm?tab=readme-ov-file#installing-and-updating).
21-
- You can also install [node.js](https://nodejs.org/download/release/v16.14.2/) version 16.14.2 directly from the Node.js website. To check if you already have Node installed on your computer, run `$ node -v`.
21+
- You can also install [node.js](https://nodejs.org/download/release/v20.19.2/) version 20.19.2 directly from the Node.js website. To check if you already have Node installed on your computer, run `$ node -v`.
2222
2. [Fork](https://help.github.com/articles/fork-a-repo) the [p5.js Web Editor repository](https://github.com/processing/p5.js-web-editor) into your own GitHub account.
2323
3. [Clone](https://help.github.com/articles/cloning-a-repository/) your new fork of the repository from GitHub onto your local computer.
2424

2525
```
2626
$ git clone https://github.com/YOUR_USERNAME/p5.js-web-editor.git
2727
```
2828

29-
4. If you are using nvm, run `$ nvm use 16.14.2` to set your Node version to 16.14.2
30-
5. Ensure your npm version is set to 8.5.0 by running `$ npm -v`. If it isn't, run `npm install -g npm@8.5.0` to install it.
29+
4. If you are using nvm, run `$ nvm use 20.19.2` to set your Node version to 20.19.2
30+
5. Ensure your npm version is set to 8.5.0 by running `$ npm -v`. If it isn't, run `npm install -g npm@10.8.2` to install it.
3131
6. Navigate into the project folder and install all its necessary dependencies with npm.
3232

3333
```

0 commit comments

Comments
 (0)