0.1.0 • Published 11 years ago

eek v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
11 years ago

eek

mix in an EventEmitter to your constructor

usage

var eek = require('eek')

var foo = eek(function foo() {
  this.isAFoo = true
})

var bar = new foo()
bar instanceof foo
// => true

bar.on('foo', function (val) {
  // this is called
  // val => 23
})
bar.emit('foo', 23)

installation

$ npm install eek

running the tests

From package root:

$ npm install
$ npm test

contributors

license

MIT. (c) MMXIII jden jason@denizac.org. See LICENSE.md