genosdb 0.15.2 → 0.15.4
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 +21 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
A lightweight, decentralized graph database designed for modern web applications, offering real-time peer-to-peer synchronization, SM ([Security Manager](https://github.com/estebanrfp/gdb/blob/main/docs/sm-architecture.md)) Provides WebAuthn-based authentication, role-based access control (RBAC), Access Control Lists ([ACLs](https://github.com/estebanrfp/gdb/blob/main/docs/sm-acls-module.md)), rule-based role promotion & demotion ([Governance](https://github.com/estebanrfp/gdb/blob/main/docs/governance.md)), and efficient local storage utilizing OPFS.
|
|
4
4
|
|
|
5
|
-
](https://github.com/estebanrfp/gdb/blob/main/docs/genosdb-examples.md)
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
@@ -12,13 +12,13 @@ A lightweight, decentralized graph database designed for modern web applications
|
|
|
12
12
|
[](https://github.com/estebanrfp/gdb/blob/main/docs/index.md)
|
|
13
13
|
|
|
14
14
|

|
|
15
|
-
[](https://estebanrfp.github.io/gdb/tests/report.html)
|
|
15
|
+
[](https://www.jsdelivr.com/package/npm/genosdb)
|
|
17
16
|
|
|
17
|
+
[](https://estebanrfp.github.io/gdb/tests/report.html)
|
|
18
|
+
[](https://socket.dev/npm/package/genosdb)
|
|
18
19
|

|
|
19
20
|
|
|
20
21
|

|
|
21
|
-
|
|
22
22
|

|
|
23
23
|
|
|
24
24
|
|
|
@@ -41,15 +41,23 @@ A lightweight, decentralized graph database designed for modern web applications
|
|
|
41
41
|
|
|
42
42
|
GenosDB runs **entirely in your browser** — there is no central database server. The Security Manager signs every operation with your key, nodes are stored locally in OPFS, and changes replicate **peer-to-peer over WebRTC**. Nostr relays only help peers discover each other — they never see your data.
|
|
43
43
|
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
44
|
+
```ascii
|
|
45
|
+
Nostr Relays
|
|
46
|
+
│
|
|
47
|
+
│ peer discovery only
|
|
48
|
+
▼
|
|
49
|
+
|
|
50
|
+
Browser + GenosDB
|
|
51
|
+
│
|
|
52
|
+
├─► Security Manager (signs operations)
|
|
53
|
+
│
|
|
54
|
+
├─► Graph Store (OPFS) (stores nodes)
|
|
55
|
+
│ │
|
|
56
|
+
│ ├─► Other Peers (WebRTC sync)
|
|
57
|
+
│ │
|
|
58
|
+
│ └─► BroadcastChannel (cross-tab)
|
|
59
|
+
│
|
|
60
|
+
└─► db.map subscriptions (reactive queries)
|
|
53
61
|
```
|
|
54
62
|
|
|
55
63
|
## Main Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "genosdb",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.4",
|
|
4
4
|
"description": "GenosDB (GDB): distributed graph database in real-time, peer-to-peer, scalable storage - efficient querying of complex relationships.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|