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

@bombadil/rhizomatic

v0.7.0

Published

Rhizomatic (TypeScript) — a portable format for arbitrarily-relational data: signed, content-addressed deltas; union merge (grow-only CRDT); truth resolved per-reader. One of two parallel witnesses to the spec.

Downloads

593

Readme

@bombadil/rhizomatic

The TypeScript reference implementation of Rhizomatic — a portable format for arbitrarily relational data: composable, forkable, mergeable, and federatable by default.

  • Every fact is a signed, content-addressed delta (an author's claim at a time).
  • Merge is union — a grow-only set CRDT; any interleaving of the same deltas converges.
  • Truth is not stored; it is resolved per-reader under a trust policy. Disagreement lives in superposition until a policy picks. Provenance and time-travel are intrinsic.

This is one of two parallel witnesses to the specification (the other is a Rust witness in the same repo). Both pass the same conformance vectors, byte-for-byte — determinism is the contract. See it run in the interactive tour.

Install

npm install @bombadil/rhizomatic

Quick taste

import { authorForSeed, signClaims, verifyDelta, DeltaSet } from "@bombadil/rhizomatic";

const seed = "00".repeat(32); // 32-byte hex seed — use real randomness in practice
const author = authorForSeed(seed);

// A delta is a signed set of pointers: an author's claim, content-addressed by its canonical bytes.
const delta = signClaims(
  {
    timestamp: 0,
    author,
    pointers: [{ role: "name", target: { kind: "primitive", value: "Ada" } }],
  },
  seed,
);

verifyDelta(delta); // "verified" (content address holds + signature checks out)

const world = new DeltaSet();
world.add(delta); // deduped by id; merge two DeltaSets and you get their union

The public surface also covers the operator algebra (evalTerm), schemas, resolution policies (resolveView), packs (packSet/unpackSet), the reactor, federation (Peer), and derivation. See the spec for what each layer means.

License

Dual-licensed under either of MIT or Apache-2.0, at your option.

Releasing (maintainers)

Publishing is cutting a tag: npm run release:patch|minor|major bumps the version, commits, tags rhizomatic-vX.Y.Z, and pushes; the release workflow then runs the full green-gate and publishes to npm via trusted publishing (OIDC — the workflow identity is the credential; no tokens anywhere, provenance automatic). The registry-side half is the package's npmjs.com Trusted Publisher setting: GitHub Actions, bombadil-labs/rhizomatic, workflow release.yml.