nouveau-theatre-de-besancon/node_modules/bare-events/README.md

26 lines
281 B
Markdown
Raw Permalink Normal View History

2024-09-20 10:32:49 +02: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