rabin ef108495d0 edit | пре 7 месеци | |
---|---|---|
.. | ||
lib | пре 7 месеци | |
LICENSE | пре 7 месеци | |
README.md | пре 7 месеци | |
index.js | пре 7 месеци | |
package.json | пре 7 месеци |
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