Handle JavaScript errors

51 Views Asked by At

I'm working on a NodeJs project. I come across with a thought that how can I differentiate an error occur in operational process (for example: system is out of memory) from a programmer error (for example: syntax error)

Does anyone have a tip for this?

Thanks for any suggestion.

1

There are 1 best solutions below

0
AudioBubble On

If you use something like process.on('uncaughtException', (err) => {throw err}) it will catch and throw any uncaught errors in your code.
Also, have a look at this for more information: https://www.joyent.com/node-js/production/design/errors