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

@speqkit/plugin-junit

v0.9.0

Published

JUnit XML from the run's event stream. What CI reads.

Readme

@speqkit/plugin-junit

JUnit XML, folded out of the run's event stream.

# speq.yaml
plugins:
  - junit

junit:
  output: junit.xml     # relative to reports/, or an absolute path
  suiteName: payments   # the name attribute on <testsuites>
speq run --reporter console,junit

Reporters are opt-in per run. --reporter names them; the default is console alone, so adding this plugin costs a registration and nothing else until a run asks for it.

Where it writes, and why there

reports/junit.xml — the stable directory, not reports/<runId>/.

A CI workflow names one fixed path and cannot interpolate a run id it will not learn until the step has already finished:

- run: speq install --frozen
- run: speq run --env ci --reporter console,junit
- uses: actions/upload-artifact@v4
  if: always()
  with:
    name: speq-report
    path: .speq/reports/

The per-run directory is right for artifacts, which are addressed from inside the report. It is wrong for the report itself.

failure and error are not the same thing

JUnit distinguishes them and so does the spine. failed is the system under test saying no; error is the test never getting an answer at all. Collapsing both into failures is what makes a flaky environment look like a broken build, so a step that threw lands in <error> and an assertion that returned false lands in <failure>.

Attachments are listed as [[ATTACHMENT|path]] in <system-out>, the convention several CI viewers already understand.

Nothing here reads the runner

Every number in the file is built from RunEvents alone — no access to the runner's result object, no hooks, no privileged channel. That is deliberate, and packages/core/test/reporting.test.ts pins it: replaying a recorded run through speq report has to produce a byte-identical file to the live run.

If that test ever fails, the event stream has stopped being sufficient to describe a run, and every consumer resting on it — this plugin, a TUI, the VS Code panel — inherits the gap. The fix would belong in the event contract, not here.

Control characters

Assertion messages routinely carry terminal colour codes; the console reporter emits them by design. XML 1.0 cannot represent them at all, and one is enough to make the file unparseable by the CI that has to read it — which shows up as a broken build rather than a broken report. They are stripped on the way out.