tool-db 1.4.3 → 1.4.5
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 +19 -0
- package/bundle.js +62764 -62922
- package/package.json +2 -2
- package/test-alice/000858.ldb +0 -0
- package/test-alice/000860.ldb +0 -0
- package/test-alice/000863.ldb +0 -0
- package/test-alice/000864.log +0 -0
- package/test-alice/CURRENT +1 -1
- package/test-alice/LOG +5 -5
- package/test-alice/LOG.old +5 -5
- package/test-alice/MANIFEST-000862 +0 -0
- package/test-bob/000785.ldb +0 -0
- package/test-bob/000787.ldb +0 -0
- package/test-bob/000790.ldb +0 -0
- package/test-bob/000791.log +0 -0
- package/test-bob/CURRENT +1 -1
- package/test-bob/LOG +5 -5
- package/test-bob/LOG.old +5 -5
- package/test-bob/MANIFEST-000789 +0 -0
- package/test-keys-a/{000587.log → 000593.log} +0 -0
- package/test-keys-a/CURRENT +1 -1
- package/test-keys-a/LOG +3 -3
- package/test-keys-a/LOG.old +3 -3
- package/test-keys-a/MANIFEST-000592 +0 -0
- package/test-keys-b/{000587.log → 000593.log} +0 -0
- package/test-keys-b/CURRENT +1 -1
- package/test-keys-b/LOG +3 -3
- package/test-keys-b/LOG.old +3 -3
- package/test-keys-b/MANIFEST-000592 +0 -0
- package/test-node-a/000873.ldb +0 -0
- package/test-node-a/000876.ldb +0 -0
- package/test-node-a/000879.ldb +0 -0
- package/test-node-a/000880.log +0 -0
- package/test-node-a/CURRENT +1 -1
- package/test-node-a/LOG +5 -14
- package/test-node-a/LOG.old +5 -5
- package/test-node-a/MANIFEST-000878 +0 -0
- package/test-node-b/000873.ldb +0 -0
- package/test-node-b/000876.ldb +0 -0
- package/test-node-b/000879.ldb +0 -0
- package/test-node-b/000880.log +0 -0
- package/test-node-b/CURRENT +1 -1
- package/test-node-b/LOG +5 -14
- package/test-node-b/LOG.old +5 -5
- package/test-node-b/MANIFEST-000878 +0 -0
- package/test-verify-a/{000719.log → 000725.log} +0 -0
- package/test-verify-a/CURRENT +1 -1
- package/test-verify-a/LOG +3 -3
- package/test-verify-a/LOG.old +3 -3
- package/test-verify-a/MANIFEST-000724 +0 -0
- package/test-alice/000845.ldb +0 -0
- package/test-alice/000847.ldb +0 -0
- package/test-alice/000850.ldb +0 -0
- package/test-alice/000853.ldb +0 -0
- package/test-alice/000854.log +0 -0
- package/test-alice/MANIFEST-000852 +0 -0
- package/test-bob/000772.ldb +0 -0
- package/test-bob/000774.ldb +0 -0
- package/test-bob/000777.ldb +0 -0
- package/test-bob/000780.ldb +0 -0
- package/test-bob/000781.log +0 -0
- package/test-bob/MANIFEST-000779 +0 -0
- package/test-keys-a/MANIFEST-000586 +0 -0
- package/test-keys-b/MANIFEST-000586 +0 -0
- package/test-node-a/000870.log +0 -0
- package/test-node-a/MANIFEST-000868 +0 -0
- package/test-node-b/000870.log +0 -0
- package/test-node-b/MANIFEST-000868 +0 -0
- package/test-verify-a/MANIFEST-000718 +0 -0
package/README.md
CHANGED
|
@@ -27,6 +27,25 @@ While the database is currently functioning as expected, there are many things t
|
|
|
27
27
|
- Allow messages encryption, add methods for Elliptic Curves, shared keys, etc.
|
|
28
28
|
- Allow adding Noise/encryption to connections (probably based on the ECC?)
|
|
29
29
|
|
|
30
|
+
# Install
|
|
31
|
+
|
|
32
|
+
You can install ToolDb via npm or yarn;
|
|
33
|
+
|
|
34
|
+
```
|
|
35
|
+
npm install tool-db
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
or use it via script in your html;
|
|
39
|
+
|
|
40
|
+
```
|
|
41
|
+
<script src="https://unpkg.com/tool-db/bundle.js"></script>
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
That will include all of ToolDb exports in `tooldb`, then you can use it like;
|
|
45
|
+
|
|
46
|
+
```
|
|
47
|
+
const { ToolDb, sha256 } = tooldb;
|
|
48
|
+
```
|
|
30
49
|
|
|
31
50
|
## Base usage
|
|
32
51
|
Connect to the selected toolDb peers;
|