p-lazy
Deferred Promise
A promise class that defers execution until the promise is actually used or specific methods are called
Create a lazy promise that defers execution until it's awaited or when .then() or .catch() is called
268 stars
8 watching
11 forks
Language: JavaScript
last commit: about 2 months ago
Linked from 1 awesome list
Related projects:
Repository | Description | Stars |
---|---|---|
sindresorhus/p-defer | Provides a promise that can be delayed to execute at a specific time or after another operation is completed. | 75 |
sindresorhus/p-some | Wait for a specified number of promises to be fulfilled | 36 |
sindresorhus/p-event | Promises an event by waiting for it to be emitted, allowing asynchronous iteration and rejection handling. | 429 |
sindresorhus/p-any | A utility function to wait for any of multiple promises to be fulfilled with cancellation support. | 55 |
sindresorhus/p-all | Concurrently execute multiple promise-returning functions with optional concurrency limits. | 318 |
sindresorhus/delay | Allows delaying promises by a specified amount of time or a random range. | 609 |
sindresorhus/p-tap | Helps tap into a promise chain without affecting its value or state | 132 |
sindresorhus/p-filter | Tool for filtering and concurrent execution of promises with an adjustable concurrency level | 73 |
sindresorhus/p-each-series | Iterates over promises in serial order, stopping at the first failed promise. | 50 |
sindresorhus/p-debounce | Debounces promise-returning & async functions to delay their execution until after a specified wait period has elapsed since the last call. | 211 |
sindresorhus/p-race | Improves Promise.race() by preventing infinite pending promises and adding support for aborting promises using AbortSignal. | 46 |
sindresorhus/p-try | A utility function to start a promise chain by executing a synchronous function safely | 58 |
sindresorhus/p-time | A utility to measure the time taken by a promise to resolve | 70 |
sindresorhus/p-settle | A utility function to settle promises concurrently and retrieve their fulfillment or rejection values with optional concurrency control. | 90 |
sindresorhus/p-map-series | Serializes promise-based operations to ensure predictable order and execution of side effects. | 47 |