Hacker News new | ask | show | jobs
by earthboundkid 2051 days ago
Most applications that use WebSockets should be using SSE instead, but WS has better mindshare, and SSE doesn't work in IE11.
1 comments

SSE can be polyfilled to work in IE11. It can be implemented on top of XHR from ie7 or so onwards.

Some caching proxies struggle with it though, because they try to buffer an entire response before forwarding it. And it’s 1 way. For something like collaborative editing, crafting a POST request for every keystroke feels wasteful, though it works great in practice.