Mohammad Asif cf937194cb Removed un-waned things 1. | пре 5 месеци | |
---|---|---|
.. | ||
lib | пре 5 месеци | |
LICENSE | пре 5 месеци | |
README.md | пре 5 месеци | |
index.js | пре 5 месеци | |
package.json | пре 5 месеци |
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