Create a private room, copy the link, and test a shareable conversation powered by plain HTML files.
Every load generates a fresh room id from the current time and your session.
#room_seed#
Paste a room id or open the shared link in another browser window.
If you skip the name, messages are sent as Guest.
#query.room#
Open the same room in two browsers. Sending updates your thread immediately, and the other browser can pull the latest messages with the refresh control.
The room id lives in the URL query string, so you can copy and distribute the link without extra routing code.
Messages are stored through w-action and fetched back with local: queries filtered by room.
Each message is rendered through a reusable <what-chat-bubble> component so the source shows how to extend the framework cleanly.
The room demo is three focused files:
site/demo/apps/chat.html
— room flow, share link, message form
site/partials/chat-room.html
— room query, thread refresh, message loop
components/chat-bubble.html
— reusable chat message UI