codigo0/backend/node_modules/bare-events
planetazuzu 0201f16cf4
Some checks are pending
Auto Deploy to Server / deploy (push) Waiting to run
Update lab configuration 2026-03-22
2026-03-22 22:50:29 +01:00
..
lib Update lab configuration 2026-03-22 2026-03-22 22:50:29 +01:00
global.d.ts Update lab configuration 2026-03-22 2026-03-22 22:50:29 +01:00
global.js Update lab configuration 2026-03-22 2026-03-22 22:50:29 +01:00
index.d.ts Update lab configuration 2026-03-22 2026-03-22 22:50:29 +01:00
index.js Update lab configuration 2026-03-22 2026-03-22 22:50:29 +01:00
LICENSE Update lab configuration 2026-03-22 2026-03-22 22:50:29 +01:00
package.json Update lab configuration 2026-03-22 2026-03-22 22:50:29 +01:00
README.md Update lab configuration 2026-03-22 2026-03-22 22:50:29 +01:00
web.d.ts Update lab configuration 2026-03-22 2026-03-22 22:50:29 +01:00
web.js Update lab configuration 2026-03-22 2026-03-22 22:50:29 +01: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