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

@webrtc-remote-control/react

v0.5.0

Published

Thin abstraction layer above peerjs that will let you be more productive at making WebRTC data channels based apps.

Readme

@webrtc-remote-control/react

npm ci Demo

Imagine you could simply control a web page opened in a browser (master) from an other page in an other browser (remote), just like you would with a TV and a remote.

webrtc-remote-control lets you do that (based on PeerJS) and handles the disconnections / reconnections, providing a simple API.

Installation

npm install peerjs @webrtc-remote-control/react

This package relies on @webrtc-remote-control/core (the implementation in vanillaJS). Other implementations for popular frameworks are available here.

Usage

peerjs is a peer dependency, so install it alongside this package and import it:

import { Peer } from "peerjs";

getPeerId() returns string | undefined - undefined on a first visit, which peerjs reads as "allocate me an id from the brokering server". Its declarations do not describe that: it declares (), (options) and (id: string, options?), and none of them admits an absent id alongside options. The gap is in the types only, so fix it in the types - declare the missing overload once, rather than branching at runtime or asserting at every call site:

import { Peer as PeerJs } from "peerjs";
import type { PeerOptions } from "peerjs";

export const Peer = PeerJs as typeof PeerJs & {
  new (id: string | undefined, options?: PeerOptions): PeerJs;
};

The examples below assume that Peer.

Direct link to the demo source code: App.tsx / Master.tsx / Remote.tsx

Building with an LLM

demo/counter-react/llm.md is a guide written for coding assistants. It states the parts of the contract the types cannot: that the mode comes from the URL hash, what sessionStorageKey buys you on reload, and which responsibilities sit with this package rather than with your application. Paste it into your assistant's context, or point the assistant at the URL.

Reconnection

A remote that loses its master retries on a backoff and emits remote.reconnecting before each attempt, then remote.reconnect once it is back. useRemote hands out a reconnectNotice that turns that payload into something to show:

const { reconnectNotice } = useRemote();

api.on("remote.reconnecting", (payload) => {
  setStatus(reconnectNotice(payload));
});
api.on("remote.reconnect", () => {
  setStatus(null);
});

The wording is overridable on the provider, and either half may be a value or a function of the payload:

<RemoteProvider
  masterPeerId={masterPeerId}
  init={({ getPeerId }) => new Peer(getPeerId())}
  reconnectNotice={{
    reconnecting: ({ attempt }) => `Reconnecting (attempt ${attempt})...`,
    stalled: "The other screen seems gone. Try reloading.",
  }}
>

A notice does not have to be a string - returning a React node works, and core types each half of it independently. TypeScript infers those types from what you pass to the provider, but a React context is created once, at module scope, so it cannot carry that inference to the hook. Name it there instead:

const { reconnectNotice } = useRemote<ReactNode>();

useRemote hands out one more thing for the same outage: isIgnorableError, which tells the peer-unavailable errors the retry loop provokes from the ones worth showing. Your subscription to your own peer is untouched - the predicate answers a question, and you still write the return:

const { humanizeError, isIgnorableError } = useRemote();

peer.on("error", (error) => {
  if (isIgnorableError(error)) {
    return;
  }
  setErrors([humanizeError(error)]);
});

useMaster has no counterpart for either of these: reconnecting is something a remote does to its master, not the other way round.

See the core README for what the notice decides, and the section after it for what the predicate does and does not claim.

TypeScript

TypeScript types are shipped with the package.

Module format

The package ships as ES modules only. There is no CommonJS or UMD build, so it needs a bundler or a browser that loads <script type="module">.