rabin ef108495d0 edit 11 ماه پیش
..
lib ef108495d0 edit 11 ماه پیش
LICENSE ef108495d0 edit 11 ماه پیش
README.md ef108495d0 edit 11 ماه پیش
index.js ef108495d0 edit 11 ماه پیش
package.json ef108495d0 edit 11 ماه پیش

README.md

bare-events

Event emitters for JavaScript.

npm install bare-events

Usage

const EventEmitter = require('bare-events')

const e = new EventEmitter()

e.on('hello', function (data) {
  console.log(data)
})

e.emit('hello', 'world')

License

Apache-2.0