awesome-imperative-promise
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

awesome-imperative-promise

NPM Build Status

Offer an imperative API on top of promise, with cancellation support

Install

npm install --save awesome-imperative-promise
// or
yarn add awesome-imperative-promise

Features

  • Imperative methods to trigger promise resolve/reject
  • Imperative method to trigger promise cancellation (the promise will never resolve/reject)
  • Can wrap an existing promise or simply create a new one
  • Typescript native support

Usage

 
import { createImperativePromise } from "awesome-imperative-promise";
 
const wrappedPromise = fetch("url");
 
// Wrap an existing promise and expose some additional imperative methods
// The existingPromise paramter is optional and the returned promise with resolve/reject when the existing promise do
const { promise, resolve, reject, cancel } = createImperativePromise(wrappedPromise);
 
// will make the returned promise resolved (not the wrapped one)
resolve("some value");
 
// will make the returned promise reject (not the wrapped one)
reject(new Error(":s"));
 
// will ensure the returned promise never resolves or reject
cancel();

Important note:

The returned promise can only resolve/reject/cancel once and will ignore further imperative calls like regular promises do. If you call cancel() and then call resolve("val") (or if the wrapped promise resolves), the returned promise will never resolve because it has been cancelled first.

Why

I find this useful to be able to cancel the resolution of promises, and use this lib as an implementation detail in other libs I build, like awesome-debounce-promise.

This is particularly useful in React apps where you want to ensure an async process is cancelled when component unmounts, to avoid triggering a setState and get a warning. See isMounted() is an antipattern

License

MIT © slorber

Hire a freelance expert

Looking for a React/ReactNative freelance expert with more than 5 years production experience? Contact me from my website or with Twitter.

Dependents (2)

Package Sidebar

Install

npm i awesome-imperative-promise

Weekly Downloads

64,773

Version

1.0.1

License

MIT

Unpacked Size

9.73 kB

Total Files

10

Last publish

Collaborators

  • slorber