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