Source: node-uncatch Section: javascript Maintainer: Debian Javascript Maintainers Uploaders: Joseph Nahmias , Testsuite: autopkgtest-pkg-nodejs Build-Depends: debhelper-compat (= 13), dh-nodejs, dh-sequence-nodejs, Standards-Version: 4.7.4 Homepage: https://github.com/jhuckaby/uncatch Vcs-Git: https://salsa.debian.org/js-team/node-uncatch.git Vcs-Browser: https://salsa.debian.org/js-team/node-uncatch Package: node-uncatch Architecture: all Depends: ${misc:Depends}, Description: global cooperative uncaught exception handler for Node.js Uncatch is a cooperative uncaught exception manager, which allows multiple modules to register listeners for uncaught exceptions, and all of them will be executed before the process finally exits. The module also handles emitting the error and stack trace to STDERR. . Uncatch also treats all unhandled rejections as if they were unhandled exceptions. This is the default behavior in Node.js v15+ anyway, and it allows both of these events to be handled in the same cooperative way in older Node.js versions. . Node.js is an event-based server-side JavaScript engine.