Skip to content

v1.0.0 Evemin blazing fast event emitter is ready!

Latest
Compare
Choose a tag to compare
@betula betula released this 13 Aug 08:15
· 3 commits to main since this release

npm version npm bundle size code coverage typescript supported

Modern and blazing fast event emitter

  • Zero-cost abstraction
  • High performance
  • Super small

🌈 2x times faster standard node.js event emitter

import { event, listen } from 'evemin'

const onStart = event()

listen(onStart, (v) => console.log('start', v))

onStart(1) // developer console output: start 1

Try it on RunKit

Installation

npm install evemin

Enjoy your code!