npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

custom-promise-class

v1.0.0

Published

The Promise class is a TypeScript-based implementation that provides a flexible and customizable approach to handling asynchronous operations through promise-like functionality.

Downloads

2

Readme

Documentation for CustomPromise


Overview

The CustomPromise class is a custom implementation of promises in TypeScript, providing functionality similar to native JavaScript promises. It allows chaining asynchronous operations and managing them through resolution or rejection. The custom promise supports standard operations like then, catch, and finally, and includes static methods for immediate resolution, rejection, and delays.


Installation

Installation

$ npm install custom-promise-class

Types

  • ResolveFunction<T>: Function type for resolving a promise with a value or another promise-like object.
  • RejectFunction: Function type for rejecting a promise with a reason.
  • ExecutorFunction<T>: Function type that takes a resolve and reject function, used to initialize promise behavior.
  • OnFulfilledFunction<T, TResult>: Function type that defines the callback to execute when a promise is fulfilled.
  • OnRejectedFunction<TResult>: Function type that defines the callback to execute when a promise is rejected.

Enum: PromiseStatus

  • Pending: Initial state, neither fulfilled nor rejected.
  • Fulfilled: Indicates that the promise has been resolved successfully.
  • Rejected: Indicates that the promise has been rejected with an error or a custom reason.

Class: CustomPromise

Constructor

constructor(executor: ExecutorFunction<T>)

Initializes a new instance of CustomPromise with an executor function which immediately executes with two arguments:

  • resolve: A function to resolve the promise.
  • reject: A function to reject the promise.

Methods

Private Methods

  • _resolve(value: T | PromiseLike<T>): void Resolves the promise with the given value or another promise. If the promise is already settled, it does nothing.
  • _reject(reason: any): void Rejects the promise with a provided reason. If the promise is already settled, it does nothing.

Public Methods

  • then<TResult1 = T, TResult2 = never>(onFulfilled?: OnFulfilledFunction<T, TResult1>, onRejected?: OnRejectedFunction<TResult2>): CustomPromise<TResult1 | TResult2> Attaches callbacks for the resolution and/or rejection of the CustomPromise. Returns a new promise resolved with the return value of the callback executed.
  • catch<TResult = never>(onRejected?: OnRejectedFunction<TResult>): CustomPromise<T | TResult> Attaches a rejection handler callback and returns a new promise, providing a way to handle rejection cases specifically.

Static Methods

  • resolve<U>(value: U | PromiseLike<U>): CustomPromise<U> Returns a promise that is immediately resolved with the given value.
  • reject<U>(reason?: any): CustomPromise<U> Returns a promise that is immediately rejected with the provided reason.
  • delay(ms: number): CustomPromise<void> Creates a promise that resolves after a specified number of milliseconds, simulating a delay.

Usage Examples

Creating a New Promise

const myPromise = new CustomPromise<number>((resolve, reject) => {
  setTimeout(() => resolve(42), 1000);
});

[!WARNING] Be careful with asynchronous operations inside the executor. Always handle potential errors and consider scenarios where operations might fail or take longer than expected.

Handling Promises

Note Always include a catch clause or handle rejections in then to prevent potential uncaught promise rejections.

myPromise.then(value => console.log(value)).catch(error => console.error(error));

[!IMPORTANT] Always handle both fulfillment and rejection to ensure that errors do not go unnoticed.

Chaining Promises

Tip: Chain multiple then calls to transform values or perform additional asynchronous operations sequentially.

myPromise.then(value => value * 2).then(result => console.log(result));
  • The order of chained operations is guaranteed, but each operation's timing can vary depending on how each promise resolves.

Static Utilities

CustomPromise.resolve(10).then(console.log); // Prints 10
CustomPromise.reject('Error').catch(console.error); // Prints 'Error'
CustomPromise.delay(500).then(() => console.log('Delayed by 500 ms'));

[!CAUTION] Overuse of CustomPromise.delay in loops or tight cycles can overwhelm JavaScript's event loop, leading to sluggish performance.