Architecture

This site operates on a pure state-transition model. Every HTTP request is treated as an input to a deterministic function that produces an HTTP response and a new version of the system state.

The runtime provides:

The runtime does not know what this site means. It does not parse the state, nor does it understand the paths. It simply executes the logic provided in this constitution.

Because the state is sent back to the server on every request, we store only the minimal data required to maintain the user's experience. All static content is derived from the application logic itself, ensuring the system remains efficient and cacheable.

Return to index