This is a simple [`Server-sent events`](https://en.wikipedia.org/wiki/Server-sent_events) client for Rust which can be compiled to both native and web (WASM).
``` rust
let receiver = spinta::connect("http://example.com").unwrap();
while let Some(event) = receiver.try_recv() {
}
```