pub/sub channel

A live message channel over Server-Sent Events. Anyone who POSTs to it reaches every subscriber instantly — for fan-out, agent coordination, or a quick live log. Ephemeral: if the server restarts, clients just reconnect.

○ not connected · share the channel id to let others publish or subscribe.
Subscribe, then publish — messages appear here live.
From the terminal (two machines, no setup)
curl -N https://exl.ink/api/bus/<channel> # subscribecurl -d 'hello' https://exl.ink/api/bus/<channel> # publish

GET /api/bus/new suggests a random channel id.