jsonrpc2 完整实现,包括对请求/响应批处理的支持。 该库是实验性的,该API尚未被认为是稳定的。 jsonrpc2旨在提供类似于Go的标准net/http包的API。 jsonrpc2可与任何io.ReadWriter一起使用,这使您可以在从tcp和websocket到stdin / stdout的任何传输方式上使用它。 路线图 双向RPC 网络套接字 jsonrpc2到gRPC填充程序 例子 // Program websocket is an example of jsonrpc2 using websocket. It implements an // sum rpc service that will sum the params given to it. // // This can be tested using https://github.com/ol