@dvvezig/server
v0.1.0
Published
Zig reference room runtime: rooms, planes, arbitration, gates, scoping, channel broker, audit log.
Readme
@dvvezig/server
Reference room runtime for the Zig protocol.
This package owns rooms, participants, the canonical log, arbitration, gates, server-side scoping, channel brokering, audit events, and WebSocket/SSE transports.
npm install @dvvezig/serverimport { RoomRuntime, serveWebSocket } from "@dvvezig/server";
const runtime = new RoomRuntime();
const ws = await serveWebSocket(runtime);
await runtime.createRoom({ id: "hq" });Use @dvvezig/server when your app runs the room runtime. Agents usually only need @dvvezig/sdk; hosts usually only need @dvvezig/client.
