Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumNodeJSmemory leak debuggingSingle-choice MCQ

Which of these is a genuine, common cause of a slow memory leak in long-running Node services?

const emitter = new EventEmitter(); function handle(req, res) { emitter.on('tick', () => res.end('ok')); // per request }