Last active
March 5, 2022 15:30
-
-
Save owenallenaz/7141699 to your computer and use it in GitHub Desktop.
Showing that nodeJS domains do not catch synchronous errors. Hence the common practice is to enclose them in process.nextTick()
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() { | |
process.nextTick(function() { | |
throw new Error("foo"); | |
}); | |
}); | |
} catch (err) { | |
console.log("try/catch caught"); | |
} | |
// 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