Changes between Version 4 and Version 5 of nodered
- Timestamp:
- 12/17/2021 07:57:18 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
nodered
v4 v5 1 1 = Node-RED 2 3 Node-RED is software ran on Node.js that allows for flow-based visual programming in a browser, to wire together hardware, inputs, and services for Internet of Things (IoT) applications. 2 4 3 5 Node-RED can be used with the Gateworks SBCs. … … 5 7 Typically, Node-RED may actually run on a server machine and the Gateworks SBC acts as a client and talks back to the server. Or, Node-RED can be install on the Gateworks SBC itself. 6 8 9 This wiki page assumes the usage of a Gateworks Venice SBC with the latest kernel (5.10 or newer) 10 7 11 = Install Node-RED on Gateworks SBC 12 13 Installing Node-Red on a Gateworks SBC isn't any different than many other Linux platforms, which instructions are detailed on the internet. 8 14 9 15 Doing the below commands will make the Gateworks SBC act as the 'server' … … 15 21 sudo apt-get install npm #get the node package manager 16 22 sudo npm install -g --unsafe-perm node-red #install node-red using npm 17 node-red 23 node-red #start the node-red application 18 24 }}} 19 25