hojas/node_modules/bare-events
2026-05-14 10:56:04 +02:00
..
lib stuff 2026-05-14 10:56:04 +02:00
global.d.ts stuff 2026-05-14 10:56:04 +02:00
global.js stuff 2026-05-14 10:56:04 +02:00
index.d.ts stuff 2026-05-14 10:56:04 +02:00
index.js stuff 2026-05-14 10:56:04 +02:00
LICENSE stuff 2026-05-14 10:56:04 +02:00
package.json stuff 2026-05-14 10:56:04 +02:00
README.md stuff 2026-05-14 10:56:04 +02:00
web.d.ts stuff 2026-05-14 10:56:04 +02:00
web.js stuff 2026-05-14 10:56:04 +02: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