christian 4571a14169 android fix | пре 3 година | |
---|---|---|
.. | ||
index.d.ts | пре 3 година | |
index.js | пре 3 година | |
license | пре 3 година | |
package.json | пре 3 година | |
readme.md | пре 3 година | |
register.d.ts | пре 3 година | |
register.js | пре 3 година |
Make unhandled promise rejections fail loudly instead of the default silent fail
By default, promises fail silently if you don’t attach a .catch()
handler to them.
This tool keeps track of unhandled rejections globally. If any remain unhandled at the end of your process, it logs them to STDERR and exits with code 1.
Use this in top-level things like tests, CLI tools, apps, etc, but not in reusable modules.
Not needed in the browser as unhandled rejections are shown in the console.
$ npm install loud-rejection
const loudRejection = require('loud-rejection');
const promiseFunction = require('promise-fn');
// Install the `unhandledRejection` listeners
loudRejection();
promiseFunction();
Without this module it’s more verbose and you might even miss some that will fail silently:
const promiseFunction = require('promise-fn');
function error(error) {
console.error(error.stack);
process.exit(1);
}
promiseFunction().catch(error);
Alternatively to the above, you may simply require loud-rejection/register
and the unhandledRejection listener will be automagically installed for you.
This is handy for ES2015 imports:
import 'loud-rejection/register';
Type: Function
Default: console.error
Custom logging function to print the rejected promise. Receives the error stack.