|
|
hai 1 ano | |
|---|---|---|
| .. | ||
| lib | hai 1 ano | |
| LICENSE | hai 1 ano | |
| README.md | hai 1 ano | |
| index.js | hai 1 ano | |
| package.json | hai 1 ano | |
Event emitters for JavaScript.
npm install bare-events
const EventEmitter = require('bare-events')
const e = new EventEmitter()
e.on('hello', function (data) {
console.log(data)
})
e.emit('hello', 'world')
Apache-2.0