I have this error:
(node:11164) Warning: Possible EventEmitter memory leak detected. 11 end listeners added. Use emitter.setMaxListeners() to increase limit
This changed with Node v6 (or possibly with v5).
Previously, a stack trace was shown automatically, now you have to generate one yourself:
process.on('warning', e => console.warn(e.stack));
Documented here.