npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

rtc-bridge

v0.1.0

Published

Browser client for rtc-bridge — connect to nodes via WebRTC without public IPs or open ports

Downloads

12

Readme

rtc-bridge

Browser client for rtc-bridge — access TCP services directly from the browser over WebRTC, no public IP or open ports required.

Nodes dial out to a coordinator server. The browser discovers nodes via the coordinator's HTTP API, exchanges SDP through it, then communicates directly over a WebRTC data channel.

Install

npm install rtc-bridge

Usage

import { Coordinator, dial } from 'rtc-bridge';

const coordinator = new Coordinator('https://your-coordinator.example.com');

// List available nodes
const nodes = await coordinator.nodes();

// Dial a node — establishes the WebRTC peer connection
const node = await dial(coordinator, nodes[0].nodeId);

// Each call opens a new data channel in command mode
const ch = await node.createChannel();

// Ping
const ms = await ch.ping();

// List services exposed by the node
const services = await ch.list();

// Verify the node's ed25519 identity
const result = await ch.verifyIdentity();
if (result.ok) console.log('verified:', result.pubkey);

// Connect to a named TCP service — channel transitions to pipe mode
await ch.connect('myservice');
ch.dc.addEventListener('message', (e) => console.log(e.data));
ch.dc.send('hello\n');

// Open another service on the same peer connection (no re-signaling)
const ch2 = await node.createChannel();
await ch2.connect('otherservice');

// Close an individual channel
ch.close();

// Close the node connection (drops all channels)
node.close();

API

Coordinator

new Coordinator(url: string)
coordinator.nodes(): Promise<NodeInfo[]>
coordinator.services(): Promise<Record<string, string[]>>

dial

dial(
  coordinator: Coordinator,
  nodeId: string,
  config?: RTCConfiguration,
): Promise<Node>

Negotiates a WebRTC connection via the coordinator. Attempts a fast path with a 1 s ICE gathering timeout, then retries with full gathering if the connection fails.

Node

node.pc   // RTCPeerConnection

node.createChannel(): Promise<Channel>  // open a new data channel in command mode
node.close(): void                      // close the peer connection

Channel

ch.dc   // RTCDataChannel (use directly once in pipe mode)

ch.ping(): Promise<number>              // round-trip ms
ch.list(): Promise<string[]>           // service names
ch.verifyIdentity(): Promise<VerifyResult>
ch.connect(service: string): Promise<void>  // transition to pipe mode; command methods throw after this
ch.close(): void                            // close this data channel

Calling ping, list, verifyIdentity, or connect after connect() has been called throws an error — the channel is in pipe mode and ch.dc should be used directly for reads and writes.

Data channel protocol

Each data channel starts in command mode. Commands:

| Command | Response | |---|---| | ping | pong | | list | JSON array of service names | | challenge <commitment_hex> | challenge-response <r_node_hex> | | verify <r_client_hex> | proof <pubkey_hex> <sig_hex> | | connect <service> | ok (then raw TCP bytes) |