ewebsock

Crates.ioewebsock
lib.rsewebsock
version0.7.0
sourcesrc
created_at2022-02-23 12:50:27.539769
updated_at2024-10-10 13:07:25.285776
descriptionWebSocket client that works natively and on the web (WASM)
homepagehttps://github.com/rerun-io/ewebsock
repositoryhttps://github.com/rerun-io/ewebsock
max_upload_size
id537852
size42,632
rerun.io (rerunio)

documentation

README

ewebsock

github Latest version Documentation unsafe forbidden Build Status MIT Apache

This is a simple WebSocket library for Rust which can be compiled to both native and web (WASM).

Usage

let options = ewebsock::Options::default();
// see documentation for more options
let (mut sender, receiver) = ewebsock::connect("ws://example.com", options).unwrap();
sender.send(ewebsock::WsMessage::Text("Hello!".into()));
while let Some(event) = receiver.try_recv() {
    println!("Received {:?}", event);
}

Testing

First start the example echo server with:

cargo r -p echo_server

Then test the library with:

# native mode
cargo run -p example_app

# web mode
# install trunk with `cargo install trunk` - https://trunkrs.dev/
(cd example_app && trunk serve)
Commit count: 57

cargo fmt