Hacker News new | ask | show | jobs
by karterk 5004 days ago
OP probably means the chaining of several async calls. Atleast in Node, the convention is to bubble up an err object back if any of the functions throw up. If you let an exception to throw, then the Node process crashes. There is a global catch-all error event listener, but it's use is generally discouraged.