文件名称:json-rpc-client:JSON RPC 2.0 客户端实现,可用于任意传输
文件大小:5KB
文件格式:ZIP
更新时间:2024-06-25 10:22:37
JavaScript
json rpc 客户端 客户端实现,可用于任意传输。 对应的服务器实现见 。 Client 被定义为 Request 对象的来源和 Response 对象的处理程序。 用法 使用任意传输创建请求函数。 传输对象必须具有发送字符串消息的send方法,并且必须具有用于添加message事件侦听器的on方法。 如果消息在同一个事件循环中发送,则消息会被批处理。 例子 // Channel "interface" var channel = { // Sends the specified string over the wire. send : function ( json ) { // ... } , // This method will be called with the string `message` as event and a // call
【文件预览】:
json-rpc-client-master
----LICENSE(1KB)
----test()
--------index.js(6KB)
----README.md(2KB)
----.gitignore(42B)
----index.js(1KB)
----package.json(1KB)