An unhandled promise rejection can be caught globally using process.on('________', handler).

  • rejection
  • unhandledRejection
  • promiseError
  • errorHandled
In Node.js, the 'unhandledRejection' event is emitted when a Promise is rejected but no handler is provided. Using process.on('unhandledRejection', handler) allows you to catch and handle such rejections globally.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *