XState v6 alpha
Server rendering
Use XState actors with server-rendered Solid.
Create actors per request. Do not share a running actor between users.
Serialize a persisted snapshot on the server and restore it on the client.
const [snapshot] = useActor(machine, { snapshot: restoredSnapshot });Start browser-only effects after hydration.
For example, restore an order actor from the database for one request, or send a persisted checkout snapshot with the page so the browser resumes the same step.