2.0.0 • Published 2 years ago

evemin v2.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

evemin

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!