A lightweight Node.js package for dispatching structured events to a middleware API.
✅ Standardized event format with metadata
✅ Automatic eventId
and correlationId
generation
✅ Lightweight, few dependencies (only uses uuid
jest
)
✅ Works with any HTTP-based middleware API
Install via npm:
npm install greenwebsites-event-dispatcher
import { EventDispatcher } from "greenwebsites-event-dispatcher";
// Initialize with middleware URL from .env or provide a URL
const dispatcher = new EventDispatcher();
async function sendEvent() {
await dispatcher.sendEvent("user-service", "UserSignedUp", {
userId: "12345",
email: "user@example.com",
});
}
sendEvent().catch(console.error);
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);
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));
}
}
}
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
git clone https://github.com/yourusername/event-dispatcher.git
cd event-dispatcher
npm install
npm test
npm run build
We welcome contributions! To contribute:
- Fork the repo and create a new branch.
- Make your changes and add tests.
- Open a pull request.
📜 This package is MIT licensed.