bare-events
v2.8.2
Published
Event emitters for JavaScript
Readme
bare-events
Event emitters for JavaScript.
npm install bare-eventsUsage
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
