Production-ready WebRTC SDK with built-in identity, encryption, and signaling.
No infrastructure required.
import { setupVaultysPeerSDK } from '@vaultys/peer-sdk';
// Initialize SDK
const sdk = await setupVaultysPeerSDK();
// Connect to a peer
const peer = await sdk.connect('peer-id');
// Send a message
await peer.send('Hello, P2P World!');