PortablePosPrinterHamekara/node_modules/bare-events
mehranz c2686e7110 initial commit 2025-11-15 13:33:50 +03:30
..
lib initial commit 2025-11-15 13:33:50 +03:30
LICENSE initial commit 2025-11-15 13:33:50 +03:30
README.md initial commit 2025-11-15 13:33:50 +03:30
global.d.ts initial commit 2025-11-15 13:33:50 +03:30
global.js initial commit 2025-11-15 13:33:50 +03:30
index.d.ts initial commit 2025-11-15 13:33:50 +03:30
index.js initial commit 2025-11-15 13:33:50 +03:30
package.json initial commit 2025-11-15 13:33:50 +03:30
web.d.ts initial commit 2025-11-15 13:33:50 +03:30
web.js initial commit 2025-11-15 13:33:50 +03:30

README.md

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