genosdb 0.7.3 → 0.8.1

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 CHANGED
@@ -35,12 +35,13 @@ A lightweight, decentralized graph database designed for modern web applications
35
35
 
36
36
  ### ✅ **GenosDB Core**
37
37
 
38
- - Efficient storage in OPFS.
39
- - Real-time synchronization between tabs and devices.
40
- - CRUD operations for nodes and relationships.
41
- - Efficient serialization using MessagePack and compression with Pako.
42
- - Enabling reverse or Radix Tree indexing through external modules.
43
- - GenosDB supports external modules that extend its capabilities.
38
+ - **High-Performance Engine & Efficient Storage:** Utilizes OPFS for fast, local-first storage. The engine is optimized for extreme write loads, capable of processing tens of thousands of operations per second without blocking the main UI thread.
39
+ - **Powerful & Flexible Queries:** Supports standard CRUD operations for nodes and relationships, plus advanced, multi-hop recursive graph traversals to discover deep connections.
40
+ - **Real-time Synchronization:**
41
+ - **Between Devices (P2P):** Employs an intelligent hybrid system (via GenosRTC) that combines real-time delta updates with a full-state fallback to ensure data consistency across all peers.
42
+ - **Between Tabs:** Uses BroadcastChannel for instant, local synchronization.
43
+ - **Optimized Data Handling:** Efficiently serializes data with MessagePack and compresses it with Pako to reduce storage footprint and network payload.
44
+ - **Extensible & Modular:** The core is lightweight, but its capabilities can be easily extended with external modules for features like advanced indexing (e.g., Radix Tree).
44
45
 
45
46
  ## Warning
46
47
 
@@ -117,11 +118,9 @@ import { gdb } from "genosdb"
117
118
 
118
119
  ## Documentation
119
120
 
120
- Our formal API reference and technical guides are located in the [`/docs` folder](https://github.com/estebanrfp/gdb/tree/main/docs) of this repository.
121
+ Our formal API reference and technical guides are located in the [`/docs`](https://github.com/estebanrfp/gdb/tree/main/docs) folder of this repository.
121
122
 
122
- For community-driven content, tutorials, and live examples, please visit our [GitHub Wiki](https://github.com/estebanrfp/gdb/wiki).
123
-
124
- For detailed documentation, visit our [GitHub Wiki](https://github.com/estebanrfp/gdb/wiki).
123
+ For community-driven content, detailed documentation, tutorials, and live examples, please visit our [GitHub Wiki](https://github.com/estebanrfp/gdb/wiki).
125
124
 
126
125
  For interactive, AI-assisted GenosDB documentation:
127
126