rings-node 0.20.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
//! 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(rings_browser)]
pub mod js;
pub mod relay;