npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

typed-event-target

v3.4.0

Published

EventTarget in the browser but with strong event typing.

Downloads

2,892

Readme

typed-event-target

This package provides a strongly typed EventTarget sub class. Provided types pass down to event listeners and place requirements on event dispatching.

Usage

npm i typed-event-target

TypedEventTarget

Extend TypedEventTarget to create your own event target with specific types, or just use it to add types to an existing event target.

import {TypedEventTarget} from 'typed-event-target';
import {MyEvent1, MyEvent2} from './typed-events.example';

export class MyTypedEventTarget extends TypedEventTarget<MyEvent1 | MyEvent2> {}
import {TypedEventTarget} from 'typed-event-target';
import {MyEvent1, MyEvent2} from './typed-events.example';

export const nowWithTypes = new EventTarget() as TypedEventTarget<MyEvent1 | MyEvent2>;

In the end, nowWithTypes will be functionally equivalent to any new instance of MyEventTarget (new MyEventTarget()) because MyEventTarget is a sub-class of EventTarget with nothing extra but type information. (Though of course, nowWithTypes won't be an instance of MyEventTarget because MyEventTarget is a separate run-time class.)

Instances of TypedEventTarget can be used just like any instance of EventTarget:

import {MyTypedEventTarget} from './my-event-target.example';
import {MyEvent1} from './typed-events.example';

const myInstance = new MyTypedEventTarget();

myInstance.addEventListener('my-event-type-1', (event) => {
    console.log(event);
});
myInstance.dispatchEvent(new MyEvent1());
myInstance.removeEventListener('my-event-type-2', () => {});

Typed Events

You are free to add the type property information to your Event sub-classes (for passing into TypedEventTarget's generic) however you wish, but this package provides an easy way to do so with defineTypedEvent:

import {defineTypedEvent} from 'typed-event-target';

export class MyEvent1 extends defineTypedEvent('my-event-type-1') {}
export class MyEvent2 extends defineTypedEvent('my-event-type-2') {}

Typed Custom Events

Typed custom events are also provided, so you can add type guards to the data included in your events. Note the extra () call after defineTypedCustomEvent. This is needed so you don't have to duplicate the Event type information as a function generic.

import {defineTypedCustomEvent} from 'typed-event-target';

export class MyEvent1 extends defineTypedCustomEvent<string>()('my-event-type-1') {}
export class MyEvent2 extends defineTypedCustomEvent<number>()('my-event-type-2') {}

new MyEvent1({detail: 'five'});
new MyEvent2({detail: 5});