HOME


Mini Shell 1.0
Negocios La Pieza.DO | Registrate o Inicia Sesión

Inicie Sesión en su Cuenta de Negocios

Olvidó Contraseña?
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