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

multiple-cucumber-html-reporter

v4.3.0

Published

Generate beautiful Cucumber.js reports for multiple instances (browsers / devices)

Readme


🌟 Why this reporter?

Multiple Cucumber HTML Reporter is a robust reporting module that transforms standard Cucumber JSON output into stunning, feature-rich HTML reports. Unlike generic reporters, it is designed for scale and clarity.

✨ Key Features

  • 📊 Interactive Dashboard: Scored overview of all tested features and scenarios.
  • 🌓 Dark Mode Support: Built-in support for light and dark themes for better accessibility.
  • 🔄 Multiple Runs: Consolidate multiple runs of the same feature (e.g., across different browsers or devices).
  • 📱 Rich Metadata: Automatically display browser, device, platform, and app version details.
  • 🔍 Advanced Filtering: Easily search, filter, and sort through large test suites.
  • 🎨 Fully Customizable: Add custom data blocks, brand colors, logo, footer, and additional CSS styles.
  • Built for Scale: Streams report generation, so suites with heavy screenshot/video attachments don't run out of memory.
  • 🖥️ CLI Tool (new in v4.2.0): Generate reports instantly with the mchr CLI — no scripting required.

🚀 Quick Start

[!IMPORTANT] v4.2.0+ introduces the mchr CLI tool — the recommended way to generate reports. No scripting needed!

Option A: CLI Tool (Recommended — v4.2.0+)

1. Install globally

npm install multiple-cucumber-html-reporter --global
# or
pnpm add multiple-cucumber-html-reporter --global

2. Create a config file

Create a .multiple-cucumber-html-reporter.json file in your project root:

{
  "jsonDir": "./path-to-your-json-output/",
  "reportPath": "./path-where-the-report-needs-to-be/",
  "pageTitle": "My Project Report",
  "reportName": "My Project",
  "displayDuration": true,
  "displayReportTime": true
}

[!TIP] Run mchr for the first time without a config file to launch an interactive onboarding wizard that creates the config file for you.

3. Generate the report

mchr

That's it! No separate script needed. See the CLI documentation for all available config options.


Option B: Programmatic API

If you prefer to generate the report from a Node.js script, install locally and call generate() directly:

pnpm add multiple-cucumber-html-reporter --save-dev
// generate-report.ts
import { generate } from 'multiple-cucumber-html-reporter';

generate({
  jsonDir: "./path-to-your-json-output/",
  reportPath: "./path-where-the-report-needs-to-be/",
  metadata: {
    browser: {
      name: "chrome",
      version: "latest",
    },
    device: "Local test machine",
    executionPlatform: 'local',
    platform: {
      name: "osx",
      version: "Sonoma",
    },
  },
  customData: {
    projectName: 'WebDriverIO sample project',
    release: '1.2.0',
    testCycle: 'Cycle 1',
    buildNumber: 'Build 1',
    environment: 'production',
    ciPipeline: 'GitHub Actions',
  },
});

Check out the examples folder for integration with frameworks like Cypress.


📖 In-Depth Documentation

Looking for advanced configurations, framework integrations (WebdriverIO, Cypress, etc.), or FAQs? Visit our comprehensive documentation site:

👉 Read the Full Documentation


🖼️ Feature Showcase

Feature List Page

Feature List Page

Feature Details Page

Feature Details Page


🤝 Contributing & Community

Contributions are what make the open source community such an amazing place to learn, inspire, and create.

💬 Support & Talk

❤️ Support the project

If you find this project useful, please consider sponsoring the maintainer. Your support helps keep the project maintained and improved!

🙏🏻 Open Source Supporter

Following are the awesome supporters to the project who has sponsored their applications paid license:

💗 Repo Activity

Multiple Cucumber HTML Reporter Repo activity

⚖️ License

Distributed under the MIT License. See LICENSE for more information.