|
|
|
|
|
by ypcx
5222 days ago
|
|
The async callback mess is not really a problem, there is about zillion patterns and libraries to handle it. The problem is error handling in callbacks, capturing stack traces from the async parent callers, and generally not crashing Node if you forget to try/catch your async handler. However, this problem is known, and this is being worked on in the form of "domains". Btw. Iced CoffeeScript doesn't solve this a single bit. |
|
Doesn't that seem to imply that it is such a problem that people have come up with a myriad of disparate solutions to try to solve it?