Nodejs Profiling: What to do with v8.log file

RainingChain picture RainingChain · Jan 26, 2014 · Viewed 15.1k times · Source

Only thing I have installed is Nodejs. I'm using Windows 8 x64.

I run my program via node --prof app.js. It generates a v8.log file.

Now, what do I do with the v8.log file?

Answer

quibusus picture quibusus · Jan 19, 2016

Starting with v5.2.0, Node.JS ships with a built-in tick processor:

node --prof-process

See the release notes for more information.