Skip to content

Instantly share code, notes, and snippets.

@hexsprite
Created October 15, 2016 05:06
Show Gist options
  • Save hexsprite/fcffe47f814f41402a41273d2e79029f to your computer and use it in GitHub Desktop.
Save hexsprite/fcffe47f814f41402a41273d2e79029f to your computer and use it in GitHub Desktop.
Profiling Meteor with v8-profiler from meteor shell
profiler = require('v8-profiler')
profiler.startProfiler()
profile = profiler.stopProfiler()
profile.export().pipe(fs.createWriteStream('profile.json')).on('finish', function() { profile.delete(); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment