Skip to content

Latest commit

 

History

History
 
 

profiling

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

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