I had previously used SSE in a project and had no idea it existed or that it was widely supported by most browsers. It's a beautiful and straightforward technology, but it doesn't seem to be as widely used as it should be, and more tooling is required. Also more tooling is required.
The really huge issue with SSE, and the reason why it’s historically been dismissed, is that it us subject to (and counts towards) the HTTP 1.1 domain connection limit.
Sadly that makes it a bit of a pain in the ass to manage for sites served as (/ compatible with) http 1.1.
I know SSE works on scenarios with few or no state updates, like in dashboard UI's. What about other cases where they deal with input data? like in a chat/game
Does SSE work reliably in mobile browsers nowadays? A few years back when I tried, it was working OK in Chrome for Android but mobile browser support didn't seem complete.
Sadly, there are very few mobile browsers that aren't Chrome or Safari. In fact, Safari/Webkit is the only mobile browser engine available on IOS at all -- all other browsers are just chrome (pun intended) around IOS webkit.
Having a standard for what events look like is a decent idea as people generally just make some random thing up without thinking too hard and having a standard is generally helpful - but making your own polling system etc when there's already a battle tested one available seems like wasted effort and a bit counterproductive
mromanuk|3 years ago
0xcoffee|3 years ago
Starting with out of the box swagger support: https://github.com/OAI/OpenAPI-Specification/issues/396
Shame they are not interested in adding it.
masklinn|3 years ago
Sadly that makes it a bit of a pain in the ass to manage for sites served as (/ compatible with) http 1.1.
jslakro|3 years ago
horstmeyer|3 years ago
gunapologist99|3 years ago
To your point, https://caniuse.com/eventsource
Also there are polyfills for very old browsers like IE.
lexicality|3 years ago