sse-server
v0.4.0
Published
Push an event stream from terminal to browser.
Readme
sse-server
Pipe an event stream from terminal to browser.
Synopsis
Launch the server.
$ sse-server
SSE server: http://localhost:9000
Input socket: localhost:9090Pipe events to the input socket.
$ echo '{ "name": "something", "data": "one" }' | nc -c localhost 9090
$ echo '{ "name": "something", "data": "two" }' | nc -c localhost 9090Connect a browser to the SSE server to consume the server-sent events.
$ curl http://localhost:9000
event: something
data: "one"
event: something
data: "two"© 2018-21 Lloyd Brookes <[email protected]>.
