nodefly-v8-profiler
v3.7.3
Published
node bindings for the v8 profiler, minus the retain/dominator bits removed from V8
Downloads
29
Keywords
Readme
v8-profiler provides node bindings for the v8 profiler and integration with node-inspector
Installation
npm install v8-profilerUsage
var profiler = require('v8-profiler');API
var snapshot = profiler.takeSnapshot([name]) //takes a heap snapshot
profiler.startProfiling([name]) //begin cpu profiling
var cpuProfile = profiler.stopProfiling([name]) //finish cpu profilingnode-inspector
Cpu profiles can be viewed and heap snapshots may be taken and viewed from the profiles panel.
