What is Node Red ?
Node-RED is a programming tool for wiring together hardware devices.
Node-RED provides a browser-based flow editor that makes it easy to wire together flows using the wide range of nodes.
Node-RED is built on Node.js, taking full advantage of its event-driven, non-blocking model. This makes it ideal to run at the edge of the network on low-cost hardware such as the Raspberry Pi.
Node red also can be run in the Android mobile without root.
How to run Node Red in Android ?
Node Red can be installed in Android mobile with the help of Termux.
What is Termux?
Termux is an Android terminal emulator and Linux environment app that works directly with no rooting or setup required. A minimal base system is installed automatically - additional packages are available using the APT package manager.
Termux Installation
Termux application can be easily installed from Google Play store
Open the Termux application which will be looks like a Linux terminal.
Installation of Node Red in Termux.
Step 1: Run the below commands to install the Node Red in Termux
apt update
apt upgrade
apt install coreutils nano nodejs
npm i -g --unsafe-perm node-red
Step 2: Start the Node Red with the following command
node-red
Step 3: Point the browser at http://localhost:1880
Now you are ready to work with node red.
Comments
Post a Comment