mirror of
https://github.com/sern-handler/website
synced 2026-06-06 01:16:47 +00:00
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