Skip to main content
FlowFuse Application Guide

Node-RED Guide

Overview

Turn an architecture sentence into a clean flow shape you can read at a glance.

Node-RED — start here

Node-RED is a visual programming platform for integration and logic: you build by wiring pre-built nodes into flows. The connectors and the syntax are handled for you, so your effort goes into what the system should do — the logic — not the plumbing to connect things or the boilerplate of a language.

The method, in four moves

  1. 1List the beginningsEvery way work enters the piece: an http in, an MQTT in, an inject. Each beginning is its own path.
  2. 2Name the shared servicesThe pools and calls many paths depend on: a database pool, a model call, the broker. Call them, results return.
  3. 3Pick the single sinkThe one sink each family of paths converges on. It responds, it routes nothing.
  4. 4Draw the shapePaths across, services called in the middle, one sink each. Now you can read the flow at a glance.

Flow shape

Design patterns

Handling data (PLC)

Operating flows

Worked example