python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
SSE doen't work with vue-cli devServer proxy
I recently move from vue-cli 4.5.x to 5.0.x.
Since this upgrade it seems Server Sent Events (SSE) doesn't work any more with the WebPack Dev Server.
(I'm currently using vue-sse)
Note in production it...

sbernard
Votes: 0
Answers: 1
Emitting Server Sent Events about a resource update in Spring Boot application
I am new to Server-Sent events. I am working with a Spring Boot application with a front-end in React.
Here, we have a requirement, if, at the same time, more than one user opens a resource in UI, the...
Joy
Votes: 0
Answers: 1
NestJs @Sse - event is consumed only by one client
I tried the sample SSE application provided with nest.js (28-SSE), and modified the sse endpoint to send a counter:
@Sse('sse')
sse(): Observable<MessageEvent> {
return interval(5000).pi...
Ronen
Votes: 0
Answers: 3
eventSource fetch API reconnecting
I have used eventSourcePolyfill fetch API for server sent events. My problem is inspite of closing the connection from front end, it is getting called repeatedly with error message -
eventsource.js:91...
Sanket Karandikar
Votes: 0
Answers: 0