5 unstable releases
0.3.0 | Aug 2, 2023 |
---|---|
0.2.2 | Sep 27, 2022 |
0.2.1 | Dec 28, 2020 |
0.2.0 | Dec 28, 2020 |
0.1.0 | Nov 15, 2017 |
#226 in WebSocket
22 downloads per month
21KB
302 lines
wsbroad
Simple websocket broadcaster implemented in Rust
Each WebSocket message sent to a particular URL on this websocket server gets delivered to all other WebSocket clients connected to the same URL. By default allows up to 64 URLs. If client is reading incoming messages too slowly, they are getting dropped for this client; no backpressure and no accumulation of messages in memory.
$ wsbroad 127.0.0.1:9002
+ 127.0.0.1:57208 -> /baz
New URL: /123
+ 127.0.0.1:57209 -> /baz
+ 127.0.0.1:57211 -> /baz
- 127.0.0.1:57208 -> /baz
- 127.0.0.1:57211 -> /baz
- 127.0.0.1:57209 -> /baz
Expiring URL: /baz
For wss://
server use some Nginx forwarding.
See Github releases for pre-built versions.
See also
- https://github.com/vi/postsse for similar application, but for HTTP POST and HTTP GET (SSE) instead of WebSockets.
Dependencies
~5–17MB
~169K SLoC