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

test-metrics-analyzer

v1.0.20

Published

CLI tool to generate and view metrics from Playwright test suites

Readme

test-metrics-analyzer

A CLI tool to analyze Playwright .spec.ts test files and generate test metrics — including total tests, steps, and cases. Also includes a live dashboard viewer.


Features

  • Analyze a single spec file or a full test directory
  • Count total test() and test.step() calls
  • Recursively resolves and analyzes imports
  • Excludes files like examples.spec.ts by default
  • Outputs structured metrics as JSON
  • Optional live HTML dashboard viewer (serve mode)

Installation

Use it directly without installing:

npx test-metrics-analyzer

Or install globally:

npm install -g test-metrics-analyzer

Usage

Analyze an entire test folder

npx test-metrics-analyzer tests

Analyzes all .spec.ts files (excluding examples.spec.ts) under the tests directory.


Analyze a single spec file

npx test-metrics-analyzer tests/auth/login.spec.ts

Analyzes only the provided file (with import tracing).


Start the metrics dashboard server

npx test-metrics-analyzer serve

Starts a local Express server at:
http://localhost:3000

The server loads metrics from the previously generated test-metrics-analyzer/test-metrics.json file.


Output

A new folder will be created:

test-metrics-analyzer/
└── test-metrics.json

Example test-metrics.json:

{
  "auth/login": {
    "totalTests": 3,
    "totalTestSteps": 5,
    "totalTestCases": 5
  },
  "dashboard/home": {
    "totalTests": 4,
    "totalTestSteps": 8,
    "totalTestCases": 8
  },
  "_total": {
    "totalTests": 7,
    "totalTestSteps": 13,
    "totalTestCases": 13
  }
}

CLI Options

| Command / Argument | Description | |--------------------|------------------------------------------| | [path] | Directory or file path to analyze | | serve | Launches a local dashboard server | | (none) | Defaults to analyzing ./tests folder |


License

MIT


Author

Morpheus

GitHub: [https://github.com/DevMorph77]