dgate 2.1.0

DGate API Gateway - High-performance API gateway with JavaScript module support
Documentation
# 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