sse-server

0.4.0 • Public • Published

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>.

Dependencies (2)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i sse-server

    Weekly Downloads

    4

    Version

    0.4.0

    License

    MIT

    Unpacked Size

    7.79 kB

    Total Files

    7

    Last publish

    Collaborators

    • 75lb