What problem does it solve?
It helps you turn structured data in an existing Binder workspace into a usable browser UI without guessing your schema or wiring backends unnecessarily.
Core Features & Use Cases
- Schema-driven UI building: Reads types, required fields, enums, and relations from the Binder schema before generating UI logic.
- Client-first dashboards: Uses Binder’s built-in same-origin JSON API to render charts, dashboards, and record views with minimal moving parts.
- Optional server augmentation: Adds
.binder/web/server.ts only when server-side aggregation or external service calls are required.
- Interactive writes when needed: Supports end-to-end record updates via
POST /api/transactions (e.g., drag-and-drop status changes).
Quick Start
Build a small dashboard or kanban UI by first reading your Binder schema, then scaffolding the frontend under .binder/web/, and finally running binder http to verify the /api/schema response and confirm records render.