If you searched for this page, you probably know React Flow, like React Flow, and need the same class of node-based editor inside an Angular application. The direct options are wrapping React inside Angular or picking an Angular-native library. Foblex Flow is the Angular-native answer: the same product category — node editors, workflow builders, interactive diagrams — built on Angular's own primitives.
Wrapping works, but you pay for it permanently:
An Angular-native library removes the seam: nodes are your Angular components with your bindings, and the editor participates in change detection like any other part of the app.
The paradigm differs by design. React Flow describes the graph as data (nodes[], edges[]) rendered by the library; Foblex Flow describes the graph as an Angular template rendered by you. What you know transfers directly:
<ReactFlow nodes={nodes} edges={edges}> → <f-flow fDraggable><f-canvas> with @for over your own model;position and data → any element with fNode and [fNodePosition], containing real Angular UI;<Handle type="source" /> → <div fConnector fConnectorType="source" fConnectorId="...">;<f-connection fSourceId fTargetId> with behaviors, types, markers and labels;onConnect → (fCreateConnection) — the library emits intent, your app updates the model;<MiniMap />, <Controls />, <Background /> → <f-minimap>, fZoom + public zoom API, <f-background>;dagre/elkjs layout recipes → the @foblex/f-dagre-layout and @foblex/f-elkjs-layout packages;fitView, viewport helpers → fitToScreen(), resetScaleAndCenter(), centerGroupOrNode().The golden rule is the same one React Flow users already respect: the library never mutates your data — it emits events, you decide.
withA11y()): spatial arrow navigation, selection, movement, deletion and connecting without a mouse, with screen-reader announcements.ng add setup.If those outweigh framework fit for your team, React Flow with a wrapper is a legitimate choice. For a deeper side-by-side — bundle size, SSR, migration notes — read React Flow vs Foblex Flow for Angular teams.
Continue with Get Started, browse the examples, or open the flagship AI Low-Code Platform demo to see how far the same primitives scale.