genosdb 0.4.4 → 0.4.6

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
@@ -132,7 +132,7 @@ Below is a list of internal dependencies and their purposes within the project:
132
132
  | ------------------ | ---------------------------------------------------------------------------------------|
133
133
  | `@msgpack/msgpack` | Data serialization/deserialization in MessagePack format. |
134
134
  | `pako` | Data compression/decompression using gzip. |
135
- | `trystero` | P2P synchronization for sharing changes in real-time between tabs/devices. |
135
+ | `genosrtc` | New Internal Module for P2P synchronization for sharing changes in real-time between tabs/devices. |
136
136
  | `BroadcastChannel` | Communication between browser tabs to notify local changes. |
137
137
 
138
138
  #### Additional Information
@@ -143,9 +143,13 @@ Below is a list of internal dependencies and their purposes within the project:
143
143
  - **`pako`**:
144
144
  Provides gzip compression to optimize data storage and network communication.
145
145
 
146
- - **`trystero`**:
146
+ - **`GenosRTC` (Internal Module for GenosDB) **:
147
+ GenosRTC is the real-time communication module for GenosDB, implementing peer-to-peer connections via WebRTC with signaling over the Nostr protocol.
148
+
149
+ This module was developed internally for the specific needs of GenosDB and leverages state-of-the-art cryptographic dependencies, such as `@noble/curves`, to ensure maximum security and performance.
150
+
147
151
  Enables peer-to-peer synchronization, ensuring real-time updates across multiple instances of the application.
148
- > **Note**: Among the available networks supported by Trystero, this project specifically uses the **Nostr** protocol for decentralized communication.
152
+ > **Note**: Among the available networks supported by GenosRTC, this project specifically uses the **Nostr** protocol for decentralized communication.
149
153
  >
150
154
  > **What is Nostr?**
151
155
  > Nostr (Notes and Other Stuff Transmitted by Relays) is a decentralized protocol designed for censorship-resistant global communication. It operates without relying on centralized servers, instead using a network of relays to transmit signed messages between peers. Nostr is particularly well-suited for applications requiring secure, private, and scalable peer-to-peer interactions, such as social networks, messaging systems, or collaborative tools.