Skip to main content
FlowFuse Application Guide

Node-RED Guide

Flow shape

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

Flow shape — start here

Turn an architecture sentence into a flow you can read at a glance. Four shape rules — where paths begin, how they share services, when to reuse as a subflow vs a link call, and where they end — draw the flow for you.

Entry paths

List every entry first; keep each path separate, don't funnel through one front door.

Three beginnings, three paths

Node-RED runtime

http in

a request arrives → prep + format → sink

MQTT in

an event arrives → prep + format → sink

inject / timer

a schedule fires → prep + format → sink

Each beginning is its own path, all the way across.

Every way work enters a piece: an http in, an MQTT in, an inject or timer. Each beginning is its own path.

Use it when

You are laying out a piece and want to see its paths before wiring. List the entries first, and do not funnel them through one shared front door.

How to lay it out

Draw one row per beginning. Each row runs straight: beginning, prep, a call to services, then a sink. The paths stay separate the whole way across.

Good for

Keeping a device path and a browser path from running through each other.