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

pigeon-reporter

v1.1.6

Published

Pigeon live reporter for Playwright tests, broadcasting test results to the pigeon server

Downloads

2

Readme

pigeon-reporter

pigeon-reporter helps you see your Playwright test results live, as they happen. It acts as a messenger between your Playwright tests and any app or dashboard you want to build. When your tests run, pigeon-reporter sends updates in real time to a server, so you (or your team) can watch progress, catch failures quickly, or store results for later. You will need a pigeon-server running in between the reporter and your app.

Why use it?

  • Instantly see which tests pass or fail, without waiting for the whole suite to finish.
  • Build dashboards or notifications that react to test events.
  • Easily connect your Playwright tests to other tools or databases.

Installation

Install with npm:

npm install pigeon-reporter

How to use in your Playwright project

  1. Install pigeon-reporter (see above).

  2. Add the reporter to your Playwright config:

    In your playwright.config.ts or playwright.config.js:

    export default {
      // ...existing config...
      reporter: [
        ['pigeon-reporter',
         { liveReportingSocketEndpoint: 'http://localhost:3004',
          projectId: 'dv98729f987v982734', //some random unique projectId
          sendScreenshots: false }], // whether to send screenshots if available, default: true
        // ...other reporters if needed...
      ],
    };
    • liveReportingSocketEndpoint: The URL where your pigeon-server is running.
    • projectId: A unique id for your project (used to create a socket.io room ).
  3. Start your pigeon-server (see above).

  4. Run your Playwright tests as usual.


How it works

  • Each Playwright project using pigeon-reporter sends test events to the server:

    • TEST_RUN_STARTED: on test run initialized
    • TEST_STARTED: on individual test execution start
    • TEST_COMPLETED: on individual test run finish and results available
    • TEST_RUN_COMPLETED: on suite run completed
  • Each message contains projectId inside, so the server later can forward the message to the corresponding socket.io room (see more about socket.io rooms)

  • The server broadcasts these events to all clients subscribed to that project's room.

  • Clients (such as dashboards or databases) connect and subscribe to a project room to receive live updates from the server.

alt text

This setup allows you to:

  • Visualize test results in real time
  • Store results in a database
  • Build custom integrations for your test events

Author

Filip Kantardjioski

https://github.com/kantarogit

Contributing

  1. Fork the repository pigeon-reporter
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

This project is licensed under the ISC License.