No black box
Standard stack. Kumiko is the glue.
Bun, Hono, Postgres, Zod: standard, proven parts. Kumiko is the glue that makes them multi-tenant and event-sourced. Not a proprietary framework versus a standard stack. It is the standard stack, already wired together. Read it, take it with you, no lock-in.
Bun runtime
Hono HTTP layer
Postgres + Drizzle event store + read model
Redis SSE pub/sub for realtime
Zod / jose / Vitest validation, JWT, tests
No Kafka. No EventStoreDB. No NATS. Postgres is everything.
features/incidents.ts
// One file, full backend feature.
import { defineFeature } from "@kumiko/engine"
export default defineFeature("incidents", (r) => {
r.entity({
name: "incident",
fields: { title, severity, status, assignee },
})
r.writeHandler("createIncident", …)
r.projection("open-incidents", …)
r.hook("postSave", notifyOncall)
})