After working for a couple of weeks with node.js, I found that there is a difference between node.js server errors and regular server side languages like PHP.
A simple example: IF an error happens in our website for ANY reason.
in PHP
If a user send some invalid data to server and MySQL, MySQL will output error to that specific user and the whole application won't go down.
in Nodejs
If a user send some invalid data to server and MySQL, nodejs Server will go down and so all the users will disconnect and there is no connection between users anymore.
This is a really big problem. in large web applications, It is impossible to handle all errors to avoid Nodejs server to go down, and the question is,
Is there any way to handle any unknown fatal errors and exceptions to a specific output or something like it.
The try-catch is the simplest method of handling exceptions. Put the code you want to run in the try block, and any Java exceptions that the code throws are caught by one or more catch blocks. This method will catch any type of Java exceptions that get thrown. This is the simplest mechanism for handling exceptions.
An example would be; process. on('uncaughtException', function (err) { if (err) { console. log("caughtException but no error msg" + err.
The exception handling refers to the mechanism by which the exceptions occurring in a code while an application is running is handled. Node. js supports several mechanisms for propagating and handling errors.
You can use the uncaughtException event on the process object to do what you want, but like others have said, domains and catching/handling errors at the correct level is recommended.
process.on('uncaughtException', function(err) { console.log('Caught exception: ' + err); });
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With