I have been trying to get anything shared between clients on my website.
For example, a counter that is synced between clients. When 1 client increments it, the other one sees it
This seems imposable because async things are run synchronously on the client (I guess because multi threading is painful on the web).
So I can't even make a polling a server with server functions because it will block everything else.