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

@norskvideo/moq-json

v0.1.2

Published

JSON publishing over MoQ tracks: snapshot/delta (RFC 7396 merge patch) objects, or append-log NDJSON streams.

Readme

@moq/json

npm version TypeScript

JSON publishing over Media over QUIC tracks, in two modes:

  • Snapshot: lossy. One JSON value updated over time; a consumer only gets the most recent value. Intermediate updates are collapsed and older groups are dropped.
  • Stream: lossless. An ordered append-log of self-contained records; every record is preserved and delivered in order, nothing is ever superseded.

Pick Snapshot when consumers care about "what is the value now" (a catalog, a status document) and Stream when they care about every record (an event log, a media timeline).

Quick Start

bun add @moq/json

Snapshot: the latest value

A JSON value is published over a @moq/net track as a series of groups. Each group is self-contained: its first frame is a full snapshot and any following frames are RFC 7396 JSON Merge Patch deltas applied in order. A consumer jumps to the newest group, reads the snapshot, and applies the deltas, so a late joiner never needs older groups. This is lossy by design: only the most recent value is delivered.

import { Snapshot } from "@moq/json";

// Publish: each update supersedes the last.
const producer = new Snapshot.Producer(track);
producer.update({ hello: "world" });

// Consume: yields the latest reconstructed value, collapsing any backlog.
const consumer = new Snapshot.Consumer(track);
for await (const value of consumer) {
	console.log(value);
}

Pass { deltaRatio: x } with a positive x to Snapshot.Producer to emit merge-patch deltas. A new snapshot group rolls once the deltas already written to the group exceed x times the fresh snapshot size; the delta that crosses the budget still lands first, so a group overshoots by at most one delta. deltaRatio defaults to 8 when unset. Set it to 0 to disable deltas: every change becomes a fresh single-frame snapshot group. Arrays are replaced wholesale within a delta; a value set to null falls back to a snapshot, since merge patch reads null as a key deletion.

Stream: every record

An ordered log of self-contained records, one JSON value per frame, all riding a single group. Nothing is superseded: a consumer yields every record in order.

import { Stream } from "@moq/json";

const producer = new Stream.Producer(track);
producer.append({ event: "started" });
producer.append({ event: "stopped" });

const consumer = new Stream.Consumer(track);
for await (const record of consumer) {
	console.log(record);
}

Both modes support optional group-scoped DEFLATE compression ({ compression: true } on both sides), interoperable with the Rust moq-json crate.