1. currently-unhandled
Track the list of currently unhandled promise rejections.
currently-unhandled
Package: currently-unhandled
Created by: jamestalmage
Last modified: Tue, 14 Jun 2022 06:01:33 GMT
Version: 0.4.1
License: MIT
Downloads: 17,360,871
Repository: https://github.com/jamestalmage/currently-unhandled

Install

npm install currently-unhandled
yarn add currently-unhandled

currently-unhandled Build Status Coverage Status

Track the list of currently unhandled promise rejections.

Install

$ npm install --save currently-unhandled

Usage

 const currentlyUnhandled = require('currently-unhandled')(); // <- note the invocation

var fooError = new Error('foo');
var p = Promise.reject(new Error('foo'));

// on the next tick - unhandled rejected promise is added to the list:
currentlyUnhandled();
//=> [{promise: p, reason: fooError}]'

p.catch(() => {});

// on the next tick - handled promise is now removed from the list:
currentlyUnhandled();
//=> [];

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

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code