eventmeshx
v0.2.0
Published
Lightweight in-process pub/sub bus with typed helpers — MERN-friendly stepping stone before Redis streams.
Maintainers
Readme
eventmeshx
Topics: eventmeshx · events · mern-packages · merndev · microservices · nodejs · npm-pm · observability · pubsub · typescript
eventmeshx wraps Node’s EventEmitter with typed publish/subscribe helpers for MERN services that are not ready for Redis yet.
import { eventmeshx } from "eventmeshx";
const bus = eventmeshx();
bus.subscribe("order.paid", (id: string) => {});
bus.publish("order.paid", "ord_123");MIT © Aftab Ahmad Khan
