main-event
Typed event emitters
About
Adds types to the EventTarget class.
Hopefully this won't be necessary forever:
- https://github.com/microsoft/TypeScript/issues/28357
- https://github.com/microsoft/TypeScript/issues/43477
- https://github.com/microsoft/TypeScript/issues/299
- https://www.npmjs.com/package/typed-events
- https://www.npmjs.com/package/typed-event-emitter
- https://www.npmjs.com/package/typed-event-target
- etc
In addition to types, a safeDispatchEvent
method is available which
prevents dispatching events that aren't in the event map, and a
listenerCount
method which reports the number of listeners that are
currently registered for a given event.
Example
import { TypedEventEmitter } from 'main-event'
import type { TypedEventTarget } from 'main-event'
interface EventTypes {
'test': CustomEvent<string>
}
const target = new TypedEventEmitter<EventTypes>()
// it's a regular EventTarget
console.info(target instanceof EventTarget) // true
// register listeners normally
target.addEventListener('test', (evt) => {
// evt is CustomEvent<string>
})
// @ts-expect-error 'derp' is not in the event map
target.addEventListener('derp', () => {})
// use normal dispatchEvent method
target.dispatchEvent(new CustomEvent('test', {
detail: 'hello'
}))
// use type safe dispatch method
target.safeDispatchEvent('test', {
detail: 'world'
})
// report listener count
console.info(target.listenerCount('test')) // 0
// event emitters can be used purely as interfaces too
function acceptTarget (target: TypedEventTarget<EventTypes>) {
// ...
}
Install
$ npm i main-event
Browser <script>
tag
Loading this module through a script tag will make its exports available as MainEvent
in the global namespace.
<script src="https://unpkg.com/main-event/dist/index.min.js"></script>
License
Licensed under either of
- Apache 2.0, (LICENSE-APACHE / http://www.apache.org/licenses/LICENSE-2.0)
- MIT (LICENSE-MIT / http://opensource.org/licenses/MIT)
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.