Back to start

Flowweaver examples

Secure execution

The mortgage guide runs here through a simulated backend-for-frontend. The client gets only a formula-free view model per step – the calculation and the rules stay in the BFF. On GitHub Pages the BFF runs in the browser, so it is a simulation, but the interface is shaped like a real server API. The principle behind it: never ship the graph to the client — send only the current step's view, and run the engine where the graph lives.

The client

What the client got (the view model)


        

What the BFF holds – never sent


        

Why Flowweaver exists