Life is a little like a message in a bottle, to be carried by the winds and the tides.
Gene Tierney
@arpinum/messaging contains a simple message bus.
npm install @arpinum/messaging --save
import { createMessageBus } from "@arpinum/messaging";
const bus = createMessageBus();
bus.register("PrintText", (message) => console.log(message.payload));
bus.post({ type: "PrintText", payload: "Hello world" }).catch(console.error);