Not TestedTesting not done, may not work properly
Networking

EventSource (SSE)

Receive real-time Server-Sent Events over HTTP connection.

Checking support...
Advertisement

Interactive Input Workspace

Ready for input

Web API Execution Output

Result output will be displayed here after processing...

Native JavaScript Code Example (Zero Libraries)

const evtSource = new EventSource('/events');
evtSource.onmessage = (e) => console.log(e.data);

About the EventSource (SSE) Web API

EventSource interface is a web content's interface to server-sent events.

Specification:W3C & WHATWG Web API Standard
Sponsored Content