![]() | Name | Last modified | Size | Description |
---|---|---|---|---|
![]() | Parent Directory | - | ||
![]() | lib/ | 8 months ago | - | |
![]() | LICENSE | 8 months ago | 11K | |
![]() | README.md | 8 months ago | 281 | |
![]() | index.js | 8 months ago | 5.9K | |
![]() | package.json | 8 months ago | 609 |
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