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

@vllnt/convex-experiments

v0.1.0

Published

Deterministic A/B experimentation — sticky variant assignment and deduped exposure tracking, as a Convex component

Downloads

648

Readme

convex-component npm CI license

@vllnt/convex-experiments

Deterministic A/B experimentation — sticky variant assignment and deduped exposure tracking, as a Convex component.

const experiments = new Experiments(components.experiments);
await experiments.define(ctx, "checkout_button", {
  variants: [
    { key: "control", weight: 1 },
    { key: "treatment", weight: 1 },
  ],
});
const { variant } = await experiments.logExposure(ctx, "checkout_button", userId);
if (variant === "treatment") showNewButton();

Define an experiment with weighted variants; enroll subjects into a sticky variant chosen deterministically from (salt, subjectRef); record exposures and read per-variant tallies. Pair it with a feature-flag system for kill-switches and measure conversions in your own tables — this component handles assignment and exposure. Domain-neutral: any subject, any surface.

Features

  • Deterministic + sticky — the same subject always lands in the same weighted variant, even before anything is stored.
  • Weighted variants — split traffic by relative weights (1:1, 90:10, N-way); equal weights split evenly.
  • Enrollment lifecycle — draft → running → stopped; only running enrolls, and stopping preserves recorded data.
  • Deduped exposures + O(variants) results — one tallied row per subject; results reads maintained per-variant tallies (assigned/subjects/exposures/weight), never scanning the exposure table.
  • Sample-ratio-ready — assigned + weight per variant let you check observed vs expected split (SRM).
  • peek — a read-only deterministic query returns a subject's sticky variant without writing (SSR / flicker-free first paint).
  • Immutable once assigned — variants/salt are fixed after enrollment (changing them throws); define a new key to re-randomize.
  • Lifecycle + GDPR — listExperiments to discover, forgetSubject to erase one subject, deleteExperiment to cascade-delete.
  • Scopes — global by default, or namespace per tenant / surface (folded into the hash for independent bucketing).
  • Fully typed — variant keys, weights, and outcomes are concrete types end to end; no any.
  • Server-sourced time — assignment timestamps come from the server, never the caller.

Installation

pnpm add @vllnt/convex-experiments

Peer dependency: convex@^1.41.0.

Usage

// convex/convex.config.ts
import { defineApp } from "convex/server";
import experiments from "@vllnt/convex-experiments/convex.config";

const app = defineApp();
app.use(experiments);
export default app;
// convex/checkout.ts — host owns auth; pass an opaque subjectRef in.
import { components } from "./_generated/api";
import { mutation } from "./_generated/server";
import { v } from "convex/values";
import { Experiments } from "@vllnt/convex-experiments";

const experiments = new Experiments(components.experiments);

export const view = mutation({
  args: { userId: v.string() },
  handler: async (ctx, { userId }) => {
    const { variant } = await experiments.logExposure(ctx, "checkout_button", userId);
    return { variant }; // "control" | "treatment" | null (not enrolled)
  },
});

Measure the outcome in your own table, joined on the assigned variant — then read tallies with results(ctx, "checkout_button"). See example/convex/example.ts for a host-side conversion recorder.

API Reference

| Method | Kind | Result | |--------|------|--------| | define(ctx, key, { variants, scope?, salt?, status? }) | mutation | { created: boolean } | | setStatus(ctx, key, status, scope?) | mutation | boolean | | assign(ctx, key, subjectRef, scope?) | mutation | { variant: null } \| { variant: string; isNew: boolean } | | logExposure(ctx, key, subjectRef, scope?) | mutation | { variant: string \| null } | | forgetSubject(ctx, key, subjectRef, scope?) | mutation | boolean (GDPR erasure) | | deleteExperiment(ctx, key, { scope?, batch? }) | mutation | number (cascade delete) | | getExperiment(ctx, key, scope?) | query | ExperimentDefinition \| null | | listExperiments(ctx, { scope?, status? }) | query | ExperimentDefinition[] | | getAssignment(ctx, key, subjectRef, scope?) | query | { variant, assignedAt } \| null | | peek(ctx, key, subjectRef, scope?) | query | { variant: string \| null } (no write) | | results(ctx, key, scope?) | query | { variant, assigned, subjects, exposures, weight }[] |

Full reference: docs/API.md.

React

Optional, tree-shakeable hooks via @vllnt/convex-experiments/react (react is an optional peer dep — a backend-only consumer pulls none of it). Each hook wraps useQuery over a query reference you re-export from your app, so the component never owns your api.

// convex/experiments.ts — re-export the host-side wrappers (auth gated)
// export const myVariant = query({ args: { userId: v.string() },
//   handler: (ctx, { userId }) => experiments.peek(ctx, "checkout_button", userId) });

import { useVariant } from "@vllnt/convex-experiments/react";
import { api } from "@/convex/_generated/api";

function CheckoutButton({ userId }: { userId: string }) {
  // deterministic first paint via peek → no flash-of-control
  const variant = useVariant(api.experiments.myVariant, { key: "checkout_button", subjectRef: userId });
  return variant === "treatment" ? <OneClick /> : <Classic />;
}

| Hook | Wraps | Returns | |------|-------|---------| | useVariant(peekRef, args) | peek | string \| null \| undefined (variant / not-enrolled / loading) | | useAssignment(getAssignmentRef, args) | getAssignment | Assignment \| null \| undefined | | useExperimentResults(resultsRef, args) | results | VariantResult[] \| undefined |

Security

  • Auth-agnostic — the host resolves identity and decides who may define, start, stop, or enroll.
  • Tables sandboxed — reached only through the exported functions; subjectRef, variant keys, and scope stay opaque.
  • Server-sourced timestamps — a caller cannot supply assignment time.

See docs/API.md.

Testing

pnpm test           # single run
pnpm test:coverage  # enforced 100% on covered files

Tests run against the real component runtime via convex-test (@edge-runtime/vm), not mocks.

Contributing

See CONTRIBUTING.md.

Author

Built by bntvllnt · bntvllnt.com · X @bntvllnt

Part of the @vllnt Convex component fleet — vllnt.com

If this is useful, sponsor the work.

License

MIT — see LICENSE.