This repo we will discuss how to make a Dashboard using NODE-RED without a coding knowladge...!
This is a part of school workshops in SLIoT challenge 26.
First Clone the repository.
git clone "https://github.com/nilum2002/NODE-RED-Tutorials"
Node-RED runs on Windows, macOS, and Linux (Ubuntu). Follow the steps for your operating system.
- Download and install Node.js (LTS) 👉 https://nodejs.org/en/download
- Make sure npm is included (default).
Verify installation:
node -v
npm -vnpm install -g --unsafe-perm node-rednode-redOpen your browser and go to:
http://localhost:1880
Option A: Using Homebrew (Recommended)
Install Homebrew (if not installed):
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"Install Node.js:
brew install nodeVerify:
node -v
npm -vnpm install -g --unsafe-perm node-rednode-redAccess:
http://localhost:1880
Using NodeSource (recommended):
curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
sudo apt install -y nodejsVerify:
node -v
npm -vsudo npm install -g --unsafe-perm node-rednode-redOpen:
http://localhost:1880
