I'm writing an express app in node. I'm trying to crash it but can't... whenever I throw exceptions the app is still running (even when no error handler is configured). I'm using express-resource too if that's related and also streamline.js.
When will something like forever be usefull to me? Is it only in more serious crash like system out of resources?
Forever is useful on development stage. When you hard work on youre code and don't want to handly restart node app. In production it can save your live, when you meet some unexpected error and all project crash ;)