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

@rc34-labs/playwright-reporter

v0.1.3

Published

Playwright reporter that streams test results to a Rocketium backend (Currents-compatible data model)

Downloads

34

Readme

@rc34-labs/playwright-reporter

Playwright reporter that streams E2E results to your backend — a self-hosted alternative to @currents/playwright.

Features (v0.1)

  • Run / shard / spec / test hierarchy matching Currents UI
  • Git + GitHub Actions metadata
  • Failure artifact upload (screenshots, videos, error-context.md)
  • Multi-shard grouping via ciBuildId + shardNumber
  • Same reporter tuple pattern as Currents

Install

pnpm add -D @rc34-labs/playwright-reporter @playwright/test

If install fails with 404 or No versions available:

  1. Log out and retry (public packages do not need auth):
pnpm logout
pnpm add -D @rc34-labs/playwright-reporter @playwright/test
  1. If that still fails, the npm package index may be out of sync after staged publish. Install the tarball directly:
npm install -D https://registry.npmjs.org/@rc34-labs/playwright-reporter/-/playwright-reporter-0.1.1.tgz

Maintainers: fix the index by publishing 0.1.2+ with npm publish (not npm stage publish) and 2FA.

For local development:

pnpm add -D file:../rocketium-playwright-reporter

Playwright config

import { defineConfig } from "@playwright/test";
import { rocketiumReporter } from "@rc34-labs/playwright-reporter";

export default defineConfig({
  reporter:
    process.env.CI && !process.env.DISABLE_REPORTER
      ? [rocketiumReporter(), ["html", { open: "never" }], ["list"]]
      : [["html", { open: "never" }], ["list"]],
});

Environment variables

| Variable | Required | Description | |----------|----------|-------------| | REPORTER_API_URL | yes | Backend base URL | | REPORTER_PROJECT_ID | yes | Project identifier | | REPORTER_API_KEY | no | Bearer token | | REPORTER_CI_BUILD_ID | no | Defaults to GITHUB_RUN_ID | | REPORTER_SHARD_NUMBER | no | Matrix shard (default 1) | | REPORTER_EXPECTED_SHARD_COUNT | no | e.g. 29 | | REPORTER_UPLOAD_ARTIFACTS | no | Set false to skip | | REPORTER_DEBUG | no | Set true for logs |

GitHub Actions (staging shard)

Add to your test job:

env:
  REPORTER_API_URL: ${{ secrets.REPORTER_API_URL }}
  REPORTER_PROJECT_ID: rocketium-staging
  REPORTER_API_KEY: ${{ secrets.REPORTER_API_KEY }}
  REPORTER_CI_BUILD_ID: ${{ github.run_id }}
  REPORTER_SHARD_NUMBER: ${{ matrix.shard }}
  REPORTER_EXPECTED_SHARD_COUNT: 29

Backend API

See docs/api-contract.md for endpoint payloads.

Development

pnpm install
pnpm build
pnpm type-check
pnpm run check-published   # confirms the version exists on npm

Publishing (maintainers)

Publish as project-lab-test (owner of the rc34-labs org):

pnpm whoami                    # must print project-lab-test
pnpm run check-published       # should fail until a version is live
npm publish                    # complete 2FA when prompted
pnpm run check-published       # should pass after publish

If npm uses staged publishing, open npm Staged Packages, approve the version with 2FA, then run pnpm run check-published again.

Preferred (fixes install index):

npm publish   # 2FA in browser — use this for releases consumers can install
pnpm run check-published

Staged flow (can leave the registry index empty until npm syncs; prefer npm publish above):

npx [email protected] stage publish
npx [email protected] stage list
npx [email protected] stage approve <stage-id-from-list>
pnpm run check-published

License

ISC