npm.io
2.9.1 • Published 1 month ago

bare-events

Licence
Apache-2.0
Version
2.9.1
Deps
0
Size
34 kB
Vulns
0
Weekly
0
Stars
9

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