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

typescript-observable

v1.0.16

Published

Adds classes and interfaces to make Typescript classes observable.

Downloads

35

Readme

typescript-observable

Build Status

Adds classes and interfaces to make Typescript classes observable.

Installation

With npm

npm install --save typescript-observable

Observable

A class for observable objects.

  • on(type : string | string[], callback : (data : any) => void | IObserver) : { cancel : Function } Adds the observer callback to the event type. The returned object has a function cancel that removes the listener.
  • off(observer : IObserver) : boolean Removes the observer. Only works if the bound observer is of type IObserver. Returns true if the removal was successful, otherwise false.
  • count() : number Counts the number of observers.
  • clear() : void Removes all observers.
  • notify(event : IObservableEvent, data : any) : void Notifies all the observers listening to the IObservableEvent or any of its parents. The parameter data is passed to the observers.

ChangeObservable

extends Observable

A subclass of Observable that tracks changes.

  • hasChanged() : boolean Check if the object has changed.
  • setChanged() : void Set that the object has changed.
  • clearChanged

IObservableEvent

An interface for events.

  • parent : IObservableEvent Observers that observe the parent event will also be notified. Can be null.
  • name : string Name of the event.

IObserver

An interface that defines an observer.

  • update(data : any, name?: string) : void Called when the observers are notified.

Example

The class to be observed can be extended with Observable

let rootEvent : IObservableEvent = {
        parent: null,
        name: 'root'
    },
    childEvent : IObservableEvent = {
        parent: rootEvent,
        name: 'child'
    };

class TestObservable extends Observable {
  foo() : void {
    // do something
    // notify observers listening to the rootEvent
    notify(rootEvent, {
        message: 'rootEvent was called'
    });
  }

  bar() : void {
    // do something else
    // notify observers listening to the childEvent and the rootEvent
    notify(childEvent, {
        message: 'childEvent was called'
    });
  }
}

let testObservable = new TestObservable();

// Called on rootEvent and childEvent
testObservable.on('root', (data, name) => {
    console.log('root observer', data.message, name);
});

// Called on childEvent
testObservable.on('child', (data, name) => {
    console.log('child observer', data.message, name);
});

testObservable.foo();
/**
 * Prints:
 * root observer, rootEvent was called, root
 */

testObservable.bar();
/*
 * Prints:
 * root observer, childEvent was called, child
 * child observer, childEvent was called, child
 */

Contribute

Make sure to run the tests

npm test