Track the list of currently unhandled promise rejections.
Install
$ npm install --save currently-unhandled
Usage
const currentlyUnhandled = ; // <- note the invocation var fooError = 'foo';var p = Promise; // on the next tick - unhandled rejected promise is added to the list:;//=> [{promise: p, reason: fooError}]' p; // on the next tick - handled promise is now removed from the list:;//=> [];
API
currentlyUnhandled()
Returns an array of objects with promise
and reason
properties representing the rejected promises that currently do not have a rejection handler. The list grows and shrinks as unhandledRejections are published, and later handled.
Browser Support
This module can be bundled with browserify
. At time of writing, it will work with native Promises in the Chrome browser only. For best cross-browser support, use bluebird
instead of native Promise support in browsers.
License
MIT © James Talmage