I have a nodejs application which receives and processes the REST API calls.
And I found out that its memory usage continually grow and never drop down.
Is that because my application creates obj and never recycle it in a loop?
Is there any VALGRIND equivalent tool for nodejs application?
How can I detect the memory leak on nodejs app?