Node.js – Errors

Node.js provides multiple ways for the propagating and handling errors occur during the Node.js application execution. The error reported by a Node.js application depends on the type of error. There are generally four types of errors in the Node.js application. Standard JavaScript errors – Like EvalError SyntaxError RangeError ReferenceError TypeError URIError System Error – For example attempt to open a file that does not exist, attempting to send data over a closed socket, etc; User-specified Errors – These errors triggered by application code. Also can be known as human mistakes…

Read More