Skip to content

Commit 952b91d

Browse files
committed
Bump readme to ref node22 and 24 rather than 20
1 parent b555b78 commit 952b91d

2 files changed

Lines changed: 19 additions & 18 deletions

File tree

docs/getting-started/local.md

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ That command will install Node-RED as a global module along with its dependencie
5454
You can confirm it has succeeded if the end of the command output looks similar to:
5555

5656
```
57-
+ node-red@4.1.2
57+
+ node-red@4.1.7
5858
added 227 packages in 13s
5959
found 0 vulnerabilities
6060
```
@@ -69,8 +69,7 @@ For more detailed information see our [docker](/docs/getting-started/docker) gui
6969

7070
### Installing with snap
7171

72-
If your OS supports [Snap](https://snapcraft.io/docs/core/install) you can install
73-
Node-RED with:
72+
Generally not recommended, but if your OS supports [Snap](https://snapcraft.io/docs/core/install) you can install Node-RED with:
7473

7574
```
7675
sudo snap install node-red
@@ -84,7 +83,9 @@ When installed as a Snap package, it will run in a secure container that **does
8483
- direct access to gpio hardware
8584
- access to any external commands your flows want to use with the Exec node (for example).
8685

86+
<div class="doc-callout">
8787
If you need access to system hardware or to add nodes that require compilation then we recommend using a full install of Node-RED and not using the snap.
88+
</div>
8889

8990
### Running
9091

@@ -97,17 +98,17 @@ $ node-red
9798
9899
Welcome to Node-RED
99100
===================
100-
22 Dec 21:51:27 - [info] Node-RED version: v4.1.2
101-
22 Dec 21:51:27 - [info] Node.js version: v20.19.6
102-
22 Dec 21:51:27 - [info] Linux 6.8.0-90-generic x64 LE
103-
22 Dec 21:51:27 - [info] Loading palette nodes
104-
22 Dec 21:51:30 - [info] Settings file : /home/pi/.node-red/settings.js
105-
22 Dec 21:51:30 - [info] Context store : 'default' [module=memory]
106-
22 Dec 21:51:30 - [info] User directory : /home/pi/.node-red
107-
22 Dec 21:51:30 - [warn] Projects disabled : editorTheme.projects.enabled=false
108-
22 Dec 21:51:30 - [info] Flows file : /home/pi/.node-red/flows.json
109-
22 Dec 21:51:30 - [info] Server now running at http://127.0.0.1:1880/
110-
22 Dec 21:51:30 - [info] Starting flows
101+
06 Mar 21:51:27 - [info] Node-RED version: v4.1.7
102+
06 Mar 21:51:27 - [info] Node.js version: v22.22.1
103+
06 Mar 21:51:27 - [info] Linux 6.8.0-90-generic x64 LE
104+
06 Mar 21:51:27 - [info] Loading palette nodes
105+
06 Mar 21:51:30 - [info] Settings file : /home/pi/.node-red/settings.js
106+
06 Mar 21:51:30 - [info] Context store : 'default' [module=memory]
107+
06 Mar 21:51:30 - [info] User directory : /home/pi/.node-red
108+
06 Mar 21:51:30 - [warn] Projects disabled : editorTheme.projects.enabled=false
109+
06 Mar 21:51:30 - [info] Flows file : /home/pi/.node-red/flows.json
110+
06 Mar 21:51:30 - [info] Server now running at http://127.0.0.1:1880/
111+
06 Mar 21:51:30 - [info] Starting flows
111112
```
112113

113114
You can then access the Node-RED editor by pointing your browser at <http://localhost:1880>.

docs/getting-started/raspberrypi.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ first to ensure npm is able to fetch and build any binary modules it needs to in
3535
This script will:
3636

3737
- remove the existing version of Node-RED if present.
38-
- if it detects Node.js is already installed, it will ensure it is at least v18. If nothing is found it will install the Node.js 20 LTS release using the [NodeSource](https://github.com/nodesource/distributions/blob/master/README.md) package.
38+
- if it detects Node.js is already installed, it will ensure it is at least v20. If nothing is found it will install the Node.js v22 LTS release using the [NodeSource](https://nodesource.com/products/distributions) package.
3939
- install the latest version of Node-RED using npm.
4040
- optionally install a collection of useful Pi-specific nodes.
4141
- setup Node-RED to run as a service and provide a set of commands to work with
@@ -44,9 +44,9 @@ This script will:
4444
<div class="doc-callout">
4545
<div style="float: left; margin-right: 10px;margin-bottom: 40px;">
4646
<img src="/images/logos/raspberrypi.svg" height="30">
47+
**Note**: As of Node v24 there are NO 32 bit builds available - so armv6 based Pi devices will no longer be supported.
4748
</div>
4849

49-
5050
</div>
5151

5252
### Running locally
@@ -75,7 +75,7 @@ The following commands are provided to work with the service:
7575

7676
- `node-red-start` - this starts the Node-RED service and displays its log output.
7777
Pressing `Ctrl-C` or closing the window does *not* stop the service; it keeps
78-
running in the background
78+
running in the background. Use `node-red-log` to re-attach and view the log.
7979
- `node-red-stop` - this stops the Node-RED service
8080
- `node-red-restart` - this restarts the Node-RED service
8181
- `node-red-reload` - this stops then starts the Node-RED service
@@ -103,7 +103,7 @@ Once Node-RED is running you can access the editor in a browser.
103103

104104
If you are using the browser on the Pi desktop, you can open the address: <http://localhost:1880>.
105105

106-
<div class="doc-callout">We recommend using a browser outside of the Pi and pointing it at Node-RED running on the Pi. However you can use the built in browser and if so we recommend Chromium or Firefox and <i>not</i> Epiphany</div>.
106+
<div class="doc-callout">We recommend using a browser outside of the Pi and pointing it at Node-RED running on the Pi. However you can use the built in browser and if so we recommend Chromium or Firefox.
107107

108108
When browsing from another machine you should use the hostname or IP-address of the Pi: `http://<hostname>:1880`. You
109109
can find the IP address by running `hostname -I` on the Pi.

0 commit comments

Comments
 (0)