genosdb 0.15.4 → 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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -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**. Nostr relays only help peers discover each other — they never see your data.
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.4",
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",