astro-ghostcms/.pnpm-store/v3/files/88/7b254d5c4571c67650222d93b6a...

26 lines
281 B
Plaintext
Raw Normal View History

2024-02-15 12:55:32 +00:00
# bare-events
Event emitters for JavaScript.
```
npm install bare-events
```
## Usage
``` js
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