|
|
1 년 전 | |
|---|---|---|
| .. | ||
| lib | 1 년 전 | |
| LICENSE | 1 년 전 | |
| README.md | 1 년 전 | |
| index.js | 1 년 전 | |
| package.json | 1 년 전 | |
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