|
|
|
|
|
by hajile
1296 days ago
|
|
Looks like the one built into chrome. You can open your browser and attach a node instance so you can debug and profile it. Here's a basic How-to: * Run node with `node --inspect <file>` * Open Chrome and go to `chrome://inspect` * After it finds your target, click the inspect button to launch a debugger. |
|
To use with Node.js profiling, do the `node --inspect` and `chrome://inspect` steps, then save the profile as a .cpuprofile file and drag that file into speedscope.
Another thing I've found useful is programmatically starting/stopping the profiler using `console.profile()` and `console.profileEnd()`.