-
-
Save sudsy/7162271 to your computer and use it in GitHub Desktop.
Showing that node.js domains do catch synchronous errors (caught.js). Showing that try catch can interfere with nodejs domains (notcaught.js).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var domain = require("domain"); | |
var d = domain.create(); | |
d.on("error", function() { | |
console.log("domain caught"); | |
}); | |
d.run(function() { | |
throw new Error("foo"); | |
}); | |
// result: domain caught |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var domain = require("domain"); | |
var d = domain.create(); | |
d.on("error", function() { | |
console.log("domain caught"); | |
}); | |
try { | |
d.run(function() { | |
throw new Error("foo"); | |
}); | |
} catch (err) { | |
console.log("try/catch caught"); | |
} | |
// result: try/catch caught |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment