I am trying to debug a high memory usage situation in a node.js service thats touching almost 1.5 GB of Resident memory usage according to top. I need to see which objects are t
You can try :
To use the inbuilt V8 profiler from command line you can :
node-gyp configure build install
npm install profiler
(See profiler for more details)You can see other profilers mentioned here and here.