Newbie to ExpressJS question:
I am planning on creating a fairly simple (but large) ExpressJS project that responds to REST requests and does read-only DB responses. I have read up about NodeJS domains for capturing errors, but it is not clear to me that I need that for this project. My testing seems to indicate that even in the worst uncaught throws and crashes, only the individual REST request fails, and not the whole server.
Am I correct? NodeJS Domain API: http://nodejs.org/api/domain.html#domain_class_domain
(Obviously the reason I ask is that domain functionality is hard to implement after-the-fact at the end of the project).
This article left me with cold feelings to the idea of NODEJS for Express if it is not needed: (I don't complicate my code if not needed).