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

greenwebsites-event-dispatcher

v1.0.6

Published

A simple event dispatcher for sending structured events

Readme

🚀 Event Dispatcher

npm version License

A lightweight Node.js package for dispatching structured events to a middleware API.


📌 Features

Standardized event format with metadata
Automatic eventId and correlationId generation
Lightweight, few dependencies (only uses uuid jest)
Works with any HTTP-based middleware API


🛠 Installation

Install via npm:

npm install greenwebsites-event-dispatcher 

📌 Usage

1️⃣ Import and Initialize the Dispatcher

import { EventDispatcher } from "greenwebsites-event-dispatcher";

// Initialize with middleware URL from .env or provide a URL
const dispatcher = new EventDispatcher();

2️⃣ Sending an Event

async function sendEvent() {
  await dispatcher.sendEvent("user-service", "UserSignedUp", {
    userId: "12345",
    email: "[email protected]",
  });
}

sendEvent().catch(console.error);

3️⃣ Sending an Event with Correlation ID

async function sendWithCorrelation() {
  await dispatcher.sendEvent("billing-service", "InvoiceGenerated", {
    invoiceId: "INV-5678",
    amount: 150.00,
    status: "pending",
  }, "req-98765"); // Correlation ID for tracking
}

sendWithCorrelation().catch(console.error);

📌 Error Handling & Retries

If the middleware is unreachable, the dispatcher will log the error.

To implement retry logic, wrap it in a function like this:

async function sendWithRetries(dispatcher, source, type, detail, retries = 3) {
  for (let i = 0; i < retries; i++) {
    try {
      await dispatcher.sendEvent(source, type, detail);
      return;
    } catch (error) {
      console.error(`Attempt ${i + 1} failed. Retrying...`);
      if (i === retries - 1) throw error;
      await new Promise(resolve => setTimeout(resolve, (i + 1) * 1000));
    }
  }
}

📌 Example Scripts

You can run example scripts included in the package:

  • Send a test event
    npm run example:send
  • Send with a correlation ID
    npm run example:correlation
  • Test error handling
    npm run example:failure

🛠 Development

1️⃣ Clone the Repository

git clone https://github.com/yourusername/event-dispatcher.git
cd event-dispatcher
npm install

2️⃣ Running Tests

npm test

3️⃣ Building the Project

npm run build

📌 Contributing

We welcome contributions! To contribute:

  1. Fork the repo and create a new branch.
  2. Make your changes and add tests.
  3. Open a pull request.

📌 License

📜 This package is MIT licensed.