2.0.0 ā€¢ Published 5 months ago

evemin v2.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months 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!