Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 1.07 KB

README.md

File metadata and controls

26 lines (20 loc) · 1.07 KB

Profiling for Node

  • CPU Profiling

    • V8 CPU Profiler: v8/include/v8-profiler.h
      • Accessible globally through --prof runtime flag, basic processing and display through --prof-processor runtime flag
    • Intel vTune profiler. Accessible through --enable-vtune-profiling compile-time flag.
  • Heap Profiling

Name Sponsor
v8-profiler StrongLoop
Chrome DevTools Google

Stack Analysis

Docs

guides/simple-profiling paulirish/automated-chrome-profiling