2 unstable releases
0.2.0 | Apr 8, 2022 |
---|---|
0.1.0 | Feb 23, 2022 |
#113 in WebSocket
3,923 downloads per month
Used in 4 crates
(via re_ws_comms)
20KB
384 lines
ewebsock
This is a simple WebSocket library for Rust which can be compiled to both native and web (WASM).
Usage
let (mut sender, receiver) = ewebsock::connect("ws://example.com").unwrap();
sender.send(ewebsock::WsMessage::Text("Hello!".into()));
while let Some(event) = receiver.try_recv() {
println!("Received {:?}", event);
}
Testing
Locally:
cargo run -p example_app
Web:
./example_app/start_server.sh &
./example_app/build_web.sh --open
Dependencies
~7–15MB
~282K SLoC