Detecting memory leaks in nodejs

node.js

Solution

The following tool should be useful for spotting memory leaks:

node-inspector

And there's also a tutorial to help you find memory leaks here:

https://github.com/felixge/node-memory-leak-tutorial

Problem

Are there some tools for detecting memory leaks in nodejs? And tell me about your experience in testing nodejs applications.

Original source