On Jul 9, 1:57 pm, mscdex <[email protected]> wrote: > On Jul 9, 10:46 am, Frederik Berg <[email protected]> wrote: > > > did I miss the section where all events that a net.connection can throw in > > the documentation or is it just missing? > > (or am I the only one not instinctively knowing it has exactly 4 namely > > data,connection,error and end ?) > > http://nodejs.org/docs/v0.8.2/api/net.html#net_event_error_1
Additionally, the 'error' event is a special one. If you don't add a listener for it and an async error occurs, the default action is for the process to die with stack trace output. The same can be said for the process object's 'uncaughtException' event. -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
