2.2.2 • Published 1 month ago

bare-events v2.2.2

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 month ago

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