Platform
Stream
Live streaming chat and event messages.
Dashboard: /stream. Live event chat overlays on the same Worker. There is no second socket fleet.
WHIP/HLS ingest needs Cloudflare Stream secrets on the Worker. The gallery does not yet include a copy-paste WHIP example.
Stream module
Live event chat overlays and stream-scoped messaging via createWorkerFluxyStreamClient.
import { createWorkerFluxyStreamClient } from "@fluxy-chat/sdk";
const stream = createWorkerFluxyStreamClient({
baseUrl: process.env.NEXT_PUBLIC_FLUXY_BASE_URL!,
token: memberJwt,
});HTTP endpoints
Worker routes under /api/live/events/:eventId/messages support posting and listing stream messages for a live event.
Use this for:
- Live stream chat overlays
- Event-scoped moderation
- High-volume fan-out with room isolation
See Realtime modules for the full module map.