Echo JS 0.11.0

<~>

tracker1 2726 days ago. link 1 point
Regarding the "uncaughtException", I will usually put enough to log the error as a fatal error to the logger, wait 100ms (for logger to flush) and process.exit(666) ...

Regarding custom net server implementation...   JSON.stringify will, by default wind up on one escaped line, you can then use newline (\n) termination for requests and responses, making it quite a bit easier to dynamically extend for future use, as well as being able to stream input/output compared to other multi-line requests and termination.

Did not know about the repl .load, very cool.