What problem does it solve?
Blong Realms define clear boundaries between business domains by encapsulating domain logic into independent, deployable units. This approach enables teams to iterate quickly, reduce coupling, and tailor deployments to monoliths or microservices.
Core Features & Use Cases
- Modular Domain Boundaries: Isolate business logic into Realm units to improve maintainability.
- Deployment Flexibility: Run realms as a monolith or as microservices with independent lifecycles.
- Team Autonomy: Allow domain-focused teams to own and deploy features end-to-end.
Quick Start
Create a new realm folder for your domain (for example, billing) and implement a server.ts that exports a default realm configuration following the Blong Realm pattern. Use import.meta.url for the realm entry point and define a minimal validation schema and a basic set of child modules.