Home

Awesome

events2 Build Status

ES2015 implementation of nodejs EventEmitter

Installation

npm install events2

Run Tests

npm test

What's different from core EventEmitter?

Notes

As event listeners storage is a Set(), if you add same listener for same 'event' repeatedly, listener will be called only once after 'event' was emited (listener will be called as many times as it was added in nodejs core EventEmitter)