0.0.1 • Published 12 years ago

cached-events v0.0.1

Weekly downloads
8
License
-
Repository
github
Last release
12 years ago

cached-events

Cache an Event Emitter

Example

Stores the emitted event for an event in a cache and will immediately fire an attached event listeners if that event is in the cache.

Good for things where you want to be notified when something happens but don't want to worry about binding listeners before it happens

var CachedEmitter = require("../index")

var login = CachedEmitter()

login.emit("login", "steve", "jones")

login.on("login", function (user, pass) {
    console.log(user, pass)
})

Installation

npm install cached-events

Contributors

  • Raynos

MIT Licenced