ispt4.0_laravel/node_modules/bare-events
2025-05-05 11:24:51 +01:00
..
lib new update 2025-05-05 11:24:51 +01:00
index.d.ts new update 2025-05-05 11:24:51 +01:00
index.js new update 2025-05-05 11:24:51 +01:00
LICENSE update 2025-03-12 12:02:15 +00:00
package.json new update 2025-05-05 11:24:51 +01:00
README.md new update 2025-05-05 11:24:51 +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