websocket
websocket copied to clipboard
Websockets for Elm
In some case we have to send several messages in the socket at once, but in a specific order, which cannot be guaranteed by using several Cmd. I can see...
I believe this would solve [#10](https://github.com/elm-lang/websocket/issues/10) There are a number of reasons we would want to know when a connection is established or closed: - Provide connection indicator in the...
Not all browsers support websockets - it would be great to know if websockets are actually supported in the browser used, so you can fall back on something else. As...
This kinda conflicts with #12, but that's not merged yet, so..... Why have this? Because I inadvertently specified a protocol of `http://` instead of `ws://`, and everything just silently failed....
### The Problem Websockets are stateful conversations. When this library auto-reconnects, it doesn't tell anyone it's done so. The server just thinks it has a new connection unrelated to the...
While building an Elm app connecting to a Phoenix channel, I was using tokens that contained `#` characters in them. As I naively thought they were just a plain string...