当前位置: 首页 > 工具软件 > JSON-RPC > 使用案例 >

JsonRPC 入门

浦修文
2023-12-01

=========================================

选择 edjCase 的 JsonRPC 类库

=========================================

从nuget查看 json RPC 下载量, 下面几个库比较靠前,

https://github.com/edjCase/JsonRpc

https://github.com/microsoft/vs-streamjsonrpc

https://github.com/Astn/JSON-RPC.NET

其中有微软开源的 StreamJsonRPC , 但看起来像是用于 VS code 的 LSP 通讯, 和 Asp.net core的结合度不高,   edjCase 的 JsonRPC 库, 有很好的入门教程, 编程风格也是目前主流的DI风格, star 和发布历史都OK, 所以选择它了.

edjCase 的 JsonRPC  包含两个核心组件:

EdjCase.JsonRpc.Router  服务端
EdjCase.JsonRpc.Client 客户端

 类似资料: