Manmics/mangashelf-server/node_modules/bare-events
2025-10-10 18:00:07 -04:00
..
lib first commit 2025-10-10 18:00:07 -04:00
global.d.ts first commit 2025-10-10 18:00:07 -04:00
global.js first commit 2025-10-10 18:00:07 -04:00
index.d.ts first commit 2025-10-10 18:00:07 -04:00
index.js first commit 2025-10-10 18:00:07 -04:00
LICENSE first commit 2025-10-10 18:00:07 -04:00
package.json first commit 2025-10-10 18:00:07 -04:00
README.md first commit 2025-10-10 18:00:07 -04:00
web.d.ts first commit 2025-10-10 18:00:07 -04:00
web.js first commit 2025-10-10 18:00:07 -04: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