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

@nwire/test-kit

v0.7.1

Published

Shared test helpers and zod-driven fixture factories

Readme

@nwire/test-kit

Test helpers for Nwire apps — harness, telemetry probe, Docker presets, BDD.

What it does

Boots a Nwire app in-process with in-memory adapters, gives you a dispatch/query/telemetry/idle/stop API, and adds Docker presets for real-deps integration tests plus a Gherkin BDD wrapper around vitest-cucumber. Three layers (unit, real-deps, BDD) so the same test kit covers fast feedback and end-to-end coverage.

Install

pnpm add -D @nwire/test-kit

Quick start

import { describe, it, expect } from "vitest";
import { harness } from "@nwire/test-kit";
import { app } from "../app";

describe("enrolStudent", () => {
  it("emits StudentWasEnrolled", async () => {
    const h = await harness({ app });
    try {
      const probe = h.telemetry.events("StudentWasEnrolled");
      await h.dispatch("enrolStudent", { studentId: "s-1", courseId: "c-1" });
      await h.idle();
      expect(probe.collected).toHaveLength(1);
    } finally {
      await h.stop();
    }
  });
});

API surface

  • harness({ app, providers? }) — boot an app in-process; returns { dispatch, query, telemetry, idle, stop }.
  • TelemetryProbe / TelemetryFilter — filter the runtime telemetry stream.
  • dockerCompose({ preset }) — spin up Mongo / Postgres / NATS / Redis for the suite; DOCKER_COMPOSE_PRESETS for ready-made stacks.
  • feature(path, define) — wire .feature files to vitest via @amiceli/vitest-cucumber.
  • factory(schema) / sequence() — zod-driven fixture factories.
  • createTestApp / bootTestApp — supertest agent helpers for HTTP-level tests.
  • isReachable(url) — startup probe for Docker-backed services.

When to use

In every Nwire test file. Fits every level — harness covers unit/integration, dockerCompose covers real-deps, feature covers BDD acceptance.