genosdb 0.15.3 → 0.15.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 +3 -3
- 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
|
|
|
@@ -39,7 +39,7 @@ A lightweight, decentralized graph database designed for modern web applications
|
|
|
39
39
|
|
|
40
40
|
## How it works
|
|
41
41
|
|
|
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
|
|
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** through [GenosRTC](https://github.com/estebanrfp/gdb/blob/main/docs/genosrtc-api-reference.md), GenosDB's own networking layer. Nostr relays only help peers discover each other — they never see your data.
|
|
43
43
|
|
|
44
44
|
```ascii
|
|
45
45
|
Nostr Relays
|
|
@@ -53,7 +53,7 @@ Browser + GenosDB
|
|
|
53
53
|
│
|
|
54
54
|
├─► Graph Store (OPFS) (stores nodes)
|
|
55
55
|
│ │
|
|
56
|
-
│ ├─► Other Peers (WebRTC sync)
|
|
56
|
+
│ ├─► Other Peers (GenosRTC / WebRTC sync)
|
|
57
57
|
│ │
|
|
58
58
|
│ └─► BroadcastChannel (cross-tab)
|
|
59
59
|
│
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "genosdb",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.5",
|
|
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",
|