Simple message bus
npm install @arpinum/messaging> 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
`ts
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);
``
- API