jsonrpc-ws-server

WebSockets server for JSON-RPC 2.0.

Documentation

Example

Cargo.toml

[dependencies] jsonrpc-ws-server = { git = "https://github.com/paritytech/jsonrpc" }

main.rs

```rust extern crate jsonrpcwsserver;

use jsonrpcwsserver::; use jsonrpc_ws_server::jsonrpc_core::;

fn main() { let mut io = IoHandler::new(); io.addmethod("sayhello", |_params| { Ok(Value::String("hello".into())) });

let server = ServerBuilder::new(io)
    .start(&"0.0.0.0:3030".parse().unwrap())
    .expect("Server must start with no issues");

server.wait().unwrap()

} ```