npm.io
0.4.0 • Published 4 years agoCLI

sse-server

Licence
MIT
Version
0.4.0
Deps
2
Size
8 kB
Vulns
0
Weekly
0
Stars
2

view on npm npm module downloads Gihub repo dependents Gihub package dependents Build Status js-standard-style

sse-server

Pipe an event stream from terminal to browser.

Synopsis

Launch the server.

$ sse-server
SSE server: http://localhost:9000
Input socket: localhost:9090

Pipe events to the input socket.

$ echo '{ "name": "something", "data": "one" }' | nc -c localhost 9090
$ echo '{ "name": "something", "data": "two" }' | nc -c localhost 9090

Connect 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 <75pound@gmail.com>.