vue-indexer / node_modules / bare-events /
..
lib v1.0 1 month ago
LICENSE v1.0 1 month ago
README.md v1.0 1 month ago
index.js v1.0 1 month ago
package.json v1.0 1 month ago
README.md

bare-events

Event emitters for JavaScript.

npm install bare-events

Usage

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