@peerbit/rpc 2.1.2 → 2.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# RPC
|
|
2
2
|
|
|
3
|
-
This module contains a communication protocol for
|
|
3
|
+
This module contains a communication protocol for generic request-and-response communication. This module can be used as a component in other modules. [Documents](./../../data/document), [DString](./../../data/string) for examples
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
@@ -62,4 +62,4 @@ await rpcTest.rpc.request( new Hello(), (resp) => { console.log(resp) })
|
|
|
62
62
|
<img width="400" src="./documentation/rpc2.png" alt="p1">
|
|
63
63
|
</p>
|
|
64
64
|
|
|
65
|
-
See [Document store](./../data/document) and [Clock Service](./../clock-service) as implementation examples
|
|
65
|
+
See [Document store](./../data/document) and [Clock Service](./../clock-service) as implementation examples.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@peerbit/rpc",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.3",
|
|
4
4
|
"description": "RPC calls for peers",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@peerbit/time": "1.0.2"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@peerbit/test-utils": "^1.0.
|
|
41
|
+
"@peerbit/test-utils": "^1.0.19"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "017864072da27e6adf8955eab5287f93d2e8f610"
|
|
44
44
|
}
|