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

learnmathedu

v2.1.8

Published

math

Readme

YuriRTC static carrier

The learnmathedu NPM name is retained for existing CDN and deployment links. The package contains the two path-portable files a static host needs: index.html and sw.js.

Build a non-deployable placeholder artifact with npm run build. A release build requires these environment variables:

  • YURIRTC_FIREBASE_API_KEY
  • YURIRTC_FIREBASE_PROJECT_ID
  • YURIRTC_FIREBASE_DATABASE_URL

The former FIREBASE_* spellings remain accepted as compatibility aliases. The resulting JavaScript is obfuscated, visible DOM copy is ROT13-encoded, and the sole display font follows the YuriRTC loader package's latest tag. The release gate verifies that both CDNs serve the exact font bytes before the carrier package is published.

Carrier network-state API

The loader reports connection state without exposing ICE candidates or network addresses:

window.dispatchEvent(new CustomEvent("yurirtc:network-state", {
  detail: {
    state: "connected",
    route: { transport: "udp", portClass: "standard" }
  }
}));

state is testing, connected, disconnected, or unavailable. A classified connected route uses udp or tcp and a portClass of standard (a configured non-443 port) or 443. A disconnected update may include bounded numeric attempt and retryInMs values so the carrier can display automatic retry feedback. Every other field is ignored and must never be rendered or logged.

When Chrome has connected but has not yet exposed the selected pair in stats, the loader may report unknown for either coarse field. The carrier reveals the application with a neutral “route unknown” value and no selected tier; it never falls back to displaying candidate details.

The reconnect button emits a cancelable yurirtc:reconnect-request event whose detail is exactly { reason: "manual" }. Automatic retry remains owned by the loader; it should emit testing when the next attempt begins. A loader that handles the manual request must call preventDefault() on the event. If no handler accepts it, the carrier safely reloads its own path as a fallback.

Release builds stamp both generated files with opaque source fingerprints. verify:package rejects a stale pair, a placeholder/development build, or files built before the current loader/package versions. Rebuild with the production Firebase web configuration before verification and upload index.html and sw.js together.