Needs to be a way of piping errors to a callback. Not only for Node.js, but for OutputFeed exceptions as well.
Node.js
Currently no error listener is being attached, so if one pops off, it will throw the exception. This would crash things.
OutputFeed
Currently any exceptions thrown within the lambda are swallowed. This translates down stream, especially in kmp-tor and the UncaughtException API. Errors thrown should be piped to an error handler callback or something, instead.
Needs to be a way of piping errors to a callback. Not only for
Node.js
, but forOutputFeed
exceptions as well.Node.js
error
listener is being attached, so if one pops off, it will throw the exception. This would crash things.OutputFeed
kmp-tor
and theUncaughtException
API. Errors thrown should be piped to an error handler callback or something, instead.