rabin ef108495d0 edit | il y a 7 mois | |
---|---|---|
.. | ||
lib | il y a 7 mois | |
LICENSE | il y a 7 mois | |
README.md | il y a 7 mois | |
index.js | il y a 7 mois | |
package.json | il y a 7 mois |
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