HOME


Mini Shell 1.0
La Pieza.DO | Todo lo que buscas!

Bienvenido de nuevo!

Acceso Cuenta Delivery
DIR: /var/www/node-app/node_modules/bare-events/
Upload File :
Current File : /var/www/node-app/node_modules/bare-events/README.md
# 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