Reputation: 17850
Node.js script won't exit if there's callbacks left in the main event loop. While one could forcefully terminate the script by calling process.exit()
or throwing exceptions, it is recommended to let the script terminate "naturally", by always doing proper cleanup. However, this sometimes can be difficult as bugs in the code may prevent proper cleanup, e.g., I may forget to remove an IntervalObject when no longer needed, etc., which eventually prevents the program from terminating.
Therefore, is there a way to debug a non-terminating script to find out what's remaining registered in the event loop? In other words, is there a way in Node.js to debug what's preventing the program from exiting?
Upvotes: 93
Views: 19817
Reputation: 78850
The wtfnode
package utilizes the tools mentioned by @mscdex but presents in a more developer-friendly way. I highly recommend this for tracking down these annoyances.
const wtf = require('wtfnode');
// ...
wtf.dump();
Upvotes: 35
Reputation: 114
Node.js, starting from version 8, provides a handy module to retrieve this kind of information.
async_hooks: an API to register callbacks tracking the lifetime of asynchronous resources created inside a Node.js application.
Upvotes: 4
Reputation: 106698
You can call process._getActiveRequests()
to get a list of active I/O requests and process._getActiveHandles()
to get a list of open handles/file descriptors.
Upvotes: 82