Skip to content

Instantly share code, notes, and snippets.

@koonuf
Created September 23, 2015 21:00
Show Gist options
  • Save koonuf/58372500cdcd596cc712 to your computer and use it in GitHub Desktop.
Save koonuf/58372500cdcd596cc712 to your computer and use it in GitHub Desktop.
router.get("/heapdump", function (req, res, next) {
try {
require("heapdump").writeSnapshot();
res.json("done");
} catch (e) {
next(e);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment