DEV Community

Discussion on: Performance Profiling Your Node.js Application at Runtime

Collapse
 
sbadhwar profile image
SAURABH BADHWAR

Hey,
The data generated by the v8 profiler might not be easily visualized using the flamegraph tools since the format of the data in JSON seems to be specific to V8 engine itself.
One of the projects which you can use could be: github.com/davidmarkclements/0x which can help you profile and generate visualizations for your Node.js process

Hope this helps