(node:5906) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 message listeners added. Use emitter.setMaxListeners() to increase limit
what is this
(node:5906) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 message listeners added. Use emitter.setMaxListeners() to increase limit
what is this
Usually that warning come up when you have code that calls .on()
repeatedly. What’s the name of the project where you’re seeing this?
If you are calling .on()
in many places, vs calling it in one piece of code that is run often, you should be fine!