clawd/node_modules/bare-events
Johan Jongsma 023030c035 Memory updates: corrections, email triage, heartbeat state
- Updated corrections.md with config validation principles
- Email triage rules and logs
- Infrastructure ownership documentation
- Daily memory files through Feb 1
- Heartbeat state tracking
2026-02-03 01:02:28 +00:00
..
lib Memory updates: corrections, email triage, heartbeat state 2026-02-03 01:02:28 +00:00
LICENSE Memory updates: corrections, email triage, heartbeat state 2026-02-03 01:02:28 +00:00
README.md Memory updates: corrections, email triage, heartbeat state 2026-02-03 01:02:28 +00:00
global.d.ts Memory updates: corrections, email triage, heartbeat state 2026-02-03 01:02:28 +00:00
global.js Memory updates: corrections, email triage, heartbeat state 2026-02-03 01:02:28 +00:00
index.d.ts Memory updates: corrections, email triage, heartbeat state 2026-02-03 01:02:28 +00:00
index.js Memory updates: corrections, email triage, heartbeat state 2026-02-03 01:02:28 +00:00
package.json Memory updates: corrections, email triage, heartbeat state 2026-02-03 01:02:28 +00:00
web.d.ts Memory updates: corrections, email triage, heartbeat state 2026-02-03 01:02:28 +00:00
web.js Memory updates: corrections, email triage, heartbeat state 2026-02-03 01:02:28 +00:00

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