Skip to content

Connecting Nodes (Modules)

Connections define the execution order of your workflow. FeedFlux executes modules sequentially, following the connection lines.


There are two ways to create connections between nodes.

🖼️ [Image: GIF or screenshot showing dragging a connection from output handle to input handle]

  1. Hover over the output handle (bottom dot) of the source node
  2. Click and hold
  3. Drag the line to the input handle (top dot) of the target node
  4. Release to create the connection
  1. Click the output handle of the source node
  2. Click the input handle of the target node
  3. Connection is created automatically

  • Method 1: Click on the connection line, then press Delete
  • Method 2: Right-click the connection line and select Delete
  • Method 3: Drag the connection away from the handle to disconnect

RuleDescription
One InputEach node can receive only one incoming connection
Multiple OutputsRegular nodes have one output; Condition nodes have two (Yes/No)
No Loops BackCannot connect a node back to a previous node (except Loop module)
Must Start from StartWorkflow must begin from the Start node
Must End at EndWorkflow should terminate at an End node

🖼️ [Image: Simple linear workflow showing Start → Search Hash → Like Post → End]

A basic workflow flows in one direction:

StartSearch HashLike PostEnd


🖼️ [Image: Workflow with a Condition node branching into “Yes” and “No” paths that merge back to End]

Use Condition (IF) nodes to create different paths based on criteria:

StartIF: Has > 1000 followers?

  • Yes → Like + Comment → End
  • No → Like Only → End

  • Keep it clean: Avoid crossing connection lines when possible
  • Left to right or top to bottom: Maintain consistent flow direction
  • Use the grid: Align nodes for cleaner visual organization
  • Group related modules: Keep logically related actions close together