Skip to content

Instantly share code, notes, and snippets.

Created September 18, 2014 13:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/cb5e6c61efb57320a9d7 to your computer and use it in GitHub Desktop.
Save anonymous/cb5e6c61efb57320a9d7 to your computer and use it in GitHub Desktop.
var heapdump = require('./node_modules/heapdump');
var obj = {};
for (var i = 0; i < 10000; i++) {
obj[i] = i;
}
heapdump.writeSnapshot('./heapshots/' + Date.now() + '.heapsnapshot');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment