Changes between Version 4 and Version 5 of nodered


Ignore:
Timestamp:
12/17/2021 07:57:18 PM (2 years ago)
Author:
Ryan Erbstoesser
Comment:

update intro

Legend:

Unmodified
Added
Removed
Modified
  • nodered

    v4 v5  
    11= Node-RED
     2
     3Node-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.
    24
    35Node-RED can be used with the Gateworks SBCs.
     
    57Typically, 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.
    68
     9This wiki page assumes the usage of a Gateworks Venice SBC with the latest kernel (5.10 or newer)
     10
    711= Install Node-RED on Gateworks SBC
     12
     13Installing Node-Red on a Gateworks SBC isn't any different than many other Linux platforms, which instructions are detailed on the internet.
    814
    915Doing the below commands will make the Gateworks SBC act as the 'server'
     
    1521    sudo apt-get install npm #get the node package manager
    1622    sudo npm install -g --unsafe-perm node-red #install node-red using npm
    17     node-red
     23    node-red #start the node-red application
    1824}}}
    1925