How to Install Node-RED on Jetson Boards

by Stephen LEE in Circuits > Microcontrollers

6701 Views, 2 Favorites, 0 Comments

How to Install Node-RED on Jetson Boards

NodeREDonJetson.png

About Node-RED

Node-RED is a programming tool for wiring together hardware devices, APIs and online services in new and interesting ways.

It provides a browser-based editor that makes it easy to wire together flows using the wide range of nodes in the palette that can be deployed to its runtime in a single-click.

Installation & Running

Type the following into the terminal:

curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -

sudo apt-get install -y nodejs build-essential

sudo npm install -g node-red

At this point you can test your instance by running node-red. Note: you may get some errors regarding the Serial node - that’s to be expected and can be ignored.
Once started, you can access the editor at http://:1880/

Wiring & Testing

Screenshot from 2017-09-10 21:41:44.png