EventSource
Last updated
Was this helpful?
Last updated
Was this helpful?
This library is a pure JavaScript implementation of the client. The API aims to be W3C compatible.
You can use it with Node.js or as a browser polyfill for .
Just add example/eventsource-polyfill.js
file to your web page:
Now you will have two global constructors:
You can define custom HTTP headers for the initial HTTP request. This can be useful for e.g. sending cookies or to specify an initial Last-Event-ID
value.
HTTP headers are defined by assigning a headers
attribute to the optional eventSourceInitDict
argument:
By default, https requests that cannot be authorized will cause the connection to fail and an exception to be emitted. You can override this behaviour, along with other https options:
Note that for Node.js < v0.10.x this option has no effect - unauthorized HTTPS requests are always allowed.
Unauthorized and redirect error status codes (for example 401, 403, 301, 307) are available in the status
property in the error event.
You can define a proxy
option for the HTTP request to be used. This is typically useful if you are behind a corporate firewall.
MIT-licensed. See LICENSE
If you're using or you can of course build your own. (The example/eventsource-polyfill.js
is built with webpack).