Otrzymuję następujące ostrzeżenie:
(node) warning: possible EventEmitter memory leak detected. 11 listeners added. Use emitter.setMaxListeners() to increase limit.
Trace:
at EventEmitter.<anonymous> (events.js:139:15)
at EventEmitter.<anonymous> (node.js:385:29)
at Server.<anonymous> (server.js:20:17)
at Server.emit (events.js:70:17)
at HTTPParser.onIncoming (http.js:1514:12)
at HTTPParser.onHeadersComplete (http.js:102:31)
at Socket.ondata (http.js:1410:22)
at TCP.onread (net.js:354:27)
Napisałem taki kod w server.js:
http.createServer(
function (req, res) { ... }).listen(3013);
Jak to naprawić?
yarn install
. gdzie mogę umieścić tę linię, aby dodać śledzenie stosu?
process.on('warning', e => console.warn(e.stack));
do debugowania ostrzeżenia. Nie używaj,process.setMaxListeners(0);
ponieważ ostrzeżenie jest z jakiegoś powodu.