Using EventEmitter.on()
, you attach a full listener, versus when you use EventEmitter.once()
, it is a one time listener that will detach after firing once. Listeners that only fire once don’t count towards the max listener count.
Using EventEmitter.on()
, you attach a full listener, versus when you use EventEmitter.once()
, it is a one time listener that will detach after firing once. Listeners that only fire once don’t count towards the max listener count.