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

1.0.1 • Public • Published

unwrapped-promise

Version Prerequisite License: MIT

An extension of Javascript's native Promise class that gives you more control over its lifecycle

Table of contents

Installation

NPM

npm i unwrapped-promise

Yarn

yarn i unwrapped-promise

Usage

import { UnwrappedPromise } from "unwrapped-promise";

const promise = new UnwrappedPromise((resolve, reject) => {
    // ...
});

An unwrapped promise is an extension of native promises. Unwrapped promises expose some methods and properties that give you more control the promise's lifecycle. They also come with some nifty utility functions that make common promise patterns easier to work with.

Reading promise status

import { UnwrappedPromise } from "unwrapped-promise";

const promise = new UnwrappedPromise((resolve) => setTimeout(resolve, 0));

console.log(promise.status); // "pending"

await promise;

console.log(promise.status); // "resolved"

Forcing rejection (aborting promises)

import { UnwrappedPromise } from "unwrapped-promise";

const promise = new UnwrappedPromise((resolve, reject) => {
    // ...
});

externalSource.on("someEvent", () => {
    promise.reject();

    console.log(promise.status); // "rejected"
});

Flat promise behavior

import { UnwrappedPromise } from "unwrapped-promise";

const flatPromise = new UnwrappedPromise();

flatPromise.then(() => console.log("Resolved!"));

flatPromise.resolve();

await flatPromise; // "Resolved!"

Waiting for settlement

import { UnwrappedPromise } from "unwrapped-promise";

const promise = new UnwrappedPromise((resolve) => setTimeout(resolve, 1000));

await promise.settled; // Resolves in 1 second

Creating an UnwrappedPromise from a regular Promise

import { UnwrappedPromise } from "unwrapped-promise";

const fetchResultPromise = UnwrappedPromise.from(fetch("/some/endpoint"));

console.log(fetchResultPromise.status); // "pending"

const result = await fetchResultPromise;

console.log(fetchResultPromise.status); // "resolved"

Keep in mind the static UnwrappedPromise.from method creates a copy of the promise provided as the argument. Forecefully rejecting or resolving the unwrapped promise has no effect on the status of the original promise.

"Re-wrapping" a promise

You can get the normal promise representation of an unwrapped promise by calling .rewrap().

import { UnwrappedPromise } from "unwrapped-promise";

const fetchResultUnwrappedPromise = UnwrappedPromise.from(
    fetch("/some/endpoint")
);

console.log(fetchResultUnwrappedPromise.status); // "pending"

const fetchResultPromise = fetchResultUnwrappedPromise.rewrap();

console.log(fetchResultPromise.status); // undefined

const result = await fetchResultPromise; // works as normal :)

Resolving from a callback

import { readFile } from "node:fs";
import { UnwrappedPromise } from "unwrapped-promise";

const data = await UnwrappedPromise.fromCallback((handle) => {
    readFile("/path/to/file.txt", "utf8", handle);
});

Timer utilities

Creating a promise that will automatically time out after 5 seconds:

import { UnwrappedPromise } from "unwrapped-promise";

const promise = new Promise((resolve) => setTimeout(resolve, 10000));

const unwrappedPromise = UnwrappedPromise.withTimeout(5000, promise);

// Logs "Timed out!" after 5 seconds
await unwrappedPromise.catch((err) => console.log("Timed out!"));

Alternative approach with UnwrappedPromise.timer:

import { UnwrappedPromise } from "unwrapped-promise";

const unwrappedPromise = UnwrappedPromise.timer(10000);
setTimeout(unwrappedPromise.reject, 5000);

// Logs "Timed out!" after 5 seconds
await unwrappedPromise.catch((err) => console.log("Timed out!"));

Examples

You can check out some more complex usage examples here.

License

MIT © Juan de Urtubey

Readme

Keywords

Package Sidebar

Install

npm i unwrapped-promise

Weekly Downloads

0

Version

1.0.1

License

MIT

Unpacked Size

19.7 kB

Total Files

12

Last publish

Collaborators

  • jdeurt