rings-node 0.10.0

Rings is a structured peer-to-peer network implementation using WebRTC, Chord algorithm, and full WebAssembly (WASM) support.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![warn(missing_docs)]
//! Built-in protocol extensions.
//!
//! Each built-in is a `(Protocol, Interpret)` pair registered under its namespace. The
//! relay's pure model is one generic [`relay::Relay`]; only its interpreter differs by
//! platform (`NativeRelay` / `WtRelay`).

pub mod echo;
#[cfg(feature = "browser")]
pub mod js;
pub mod relay;