cancelable-awaiter

A replacement for Typescript's default awaiter helper that supports Bluebird promise cancellations.

Usage no npm install needed!

<script type="module">
  import cancelableAwaiter from 'https://cdn.skypack.dev/cancelable-awaiter';
</script>

README

Cancelable Awaiter

A replacement for Typescript's default awaiter helper that supports Bluebird promise cancellations.

Installation

npm install --save cancelable-awaiter

Usage

Depends on bluebird being installed as a dependency and configured to support cancellations:

import * as tslib from "tslib";
import * as Bluebird from "bluebird";
import * as awaiter from "cancelable-awaiter";

Bluebird.config({
    cancellation: true
});

(tslib as any).__awaiter = awaiter;

Note that in order for the above to work you also need to compile your project with the --importHelpers flag and install the tslib module.

Then async/await syntax can be used in conjunction with promise cancellations:

async function doSomeThings() {
    await doFirstThing()
        // will be invoked anyway:
        .finally(() => console.log("May have done first thing."));

    // may not execute this part if cancelled beforehand:
    console.log("Done first thing!");

    // may also be cancelled after first thing is done:
    await doSecondThing();
    console.log("Done second thing!");
}

const promise = doSomeThings()
    .finally(() => console.log("May have done some things."));

Promise.delay(1000)
    .then(() => promise.cancel());