A marketplace lives or dies on whether both sides can trust the state of a deal. If a seller's listing, a buyer's message, and the agreed terms can drift out of sync, the platform isn't a marketplace — it's a rumor mill. Milly Books avoids that by routing every authenticated action through one backend that owns the truth. You never interact with it directly, but everything you do on the platform is recorded and coordinated there.
This piece explains what the backend holds, and the two properties that make the rest of the platform trustworthy.
§ 01 · What it holdsThe state of the marketplace.
The backend is the authoritative home for the records that make up a transaction. When any of them changes, it changes in one place, and every surface that reads it sees the same result.
| Record | What it captures |
|---|---|
| Accounts | Who you are and what tier you hold |
| Listings & slices | The supply published to the marketplace |
| Buyer profiles | The demand and its stated appetite |
| Messages | The platform inbox between counterparties |
| Subscriptions | Plan state and what it unlocks |
| Deal steps | Where a transaction stands in the workflow |
§ 02 · ConsistencyWhat you see is what's stored.
Because there's one source of truth, the platform doesn't keep competing copies that can disagree. A change you make — publishing a slice, updating your appetite, advancing a deal — is recorded once and read back the same way everywhere it appears. That consistency is invisible when it works and catastrophic when it doesn't, which is why a single authoritative store is the right foundation for a transaction platform rather than a convenience.
§ 03 · Server-side authorityThe rules don't live in the browser.
The second property is about trust. Access decisions — who can see what, which tier unlocks which tool — are decided on the backend, not assumed from what the app happens to show. The browser renders the experience; the backend owns the rules. Keeping authority server-side is what lets the platform make confident guarantees about confidentiality and access rather than hoping the front end was configured correctly. It's also the foundation the platform continues to harden as the marketplace grows.
A marketplace is only as trustworthy as its source of truth. One authoritative backend — consistent reads, server-side rules — is what lets two parties rely on the same state of a deal.
◆
Terminology on this shelf
- System of record
- The single authoritative store for accounts, listings, messages, subscriptions, and deal steps.
- Consistency
- The property that every surface reading a record sees the same, current value.
- Server-side authority
- Access and tier rules decided on the backend rather than inferred from the browser.