rabin ef108495d0 edit | 7 months ago | |
---|---|---|
.. | ||
lib | 7 months ago | |
LICENSE | 7 months ago | |
README.md | 7 months ago | |
index.js | 7 months ago | |
package.json | 7 months ago |
Event emitters for JavaScript.
npm install bare-events
const EventEmitter = require('bare-events')
const e = new EventEmitter()
e.on('hello', function (data) {
console.log(data)
})
e.emit('hello', 'world')
Apache-2.0