fetcher-eventbus
Workflow
- Choose
SerialTypedEventBuswhen ordering and sequential side effects matter. - Choose
ParallelTypedEventBuswhen handlers are independent and latency matters. - Choose
BroadcastTypedEventBusor a cross-tab messenger for browser-tab synchronization. - Give handlers stable names and explicit order values when behavior must be predictable.
- Load
references/api.mdfor interface details, messenger fallback behavior, and examples.
Key Practices
- Use one event type per focused bus unless a multi-type router materially reduces duplication.
- Treat handler names as identifiers, not labels; duplicate names are rejected.
- Call cleanup functions or
destroy()for long-lived UI and test code.
References
references/api.md: Detailed package API, examples, and edge-case guidance. Load it only when the task needs TypedEventBus contracts, event handler fields, serial/parallel/broadcast examples, messenger APIs, and fallback chains.
Related Skills
- $fetcher-storage: Use when eventing is tied to persistent key-value state.
- $fetcher-react-hooks: Use when React components subscribe to event buses.
- $fetcher-cosec-auth: Use when auth token or device storage changes must broadcast.