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

tau-callbacks

v0.2.0

Published

A multi-purpose callbacks list object that provides a powerful way to manage callback lists. Inspired by jQuery.

Downloads

191

Readme

tauCallbacks Build Status

A multi-purpose callbacks list object that provides a powerful way to manage callback lists. API is very close to jQuery's $.Callbacks to allow easy migration and adoption.

Quick API reference

  • callbacks.add(handler, [scope]), callbacks.on(handler, [scope])

    Add a callback to a callback list, and optionally set its execution context to scope. The same callback function could be added multiple times with different scopes to allow adding the same class method with different class instances.

  • callbacks.one(handler, [scope]), callbacks.once(handler, [scope])

    Add an one-time callback to a callback list. Callback will be removed from list after first fire().

  • callbacks.fire(args), callbacks.trigger(args)

    Call all of the callbacks with the given arguments.

  • callbacks.remove(handler, [scope]), callbacks.off(handler, [scope])

    Remove specified callback with the given scope from a list.

  • callbacks.remove(scope), callbacks.off(scope)

    Remove all of the callbacks with the given scope from a list.

  • callbacks.removeAll(), callbacks.empty()

    Remove all of the callbacks from a list.

  • callbacks.buffer(f, scope)

    Perform operation f which calls fire() multiple times, and then call fire() only once. Sort of debounce.

Differences from jQuery's Callbacks

| Method | Diff | jQuery Callbacks | tauCallbacks | | ------------- | --- | --- | --- | | add | !== | Add a callback or a collection of callbacks to a callback list | Add only one callback, optionally with the given context | | disable | !== | Disable a callback list from doing anything more | - | | disabled | !== | Determine if the callbacks list has been disabled | - | | empty | === | Remove all of the callbacks | Remove all of the callbacks | | fire | === | Call all of the callbacks with the given arguments | Call all of the callbacks with the given arguments | | fired | !== | Determine if the callbacks have already been called at least once | - | | fireWith | !== | Call all callbacks in a list with the given context and arguments | - | | has | !== | Determine whether or not the list has any callbacks attached | - | | lock | !== | Lock a callback list in its current state | - | | locked | !== | Determine if the callbacks list has been locked | - | | remove | !== | Remove a callback or a collection of callbacks from a callback list | Remove a callback or a collection of callbacks with the same scope from a callback list | | on | !== | - | Synonym to add | | one, once | !== | - | Add an one-time callback to a callback list | | off | !== | - | Synonym to remove | | trigger | !== | - | Synonym to fire | | removeAll | !== | - | Synonym to empty | | buffer | !== | - | Debounce fire while performing some operation |