awesome-repositories.com
Blog
MCP
awesome-repositories.com

Discover the best open-source repositories with AI-powered search.

ExploreCurated searchesOpen-source alternativesSelf-hosted softwareBlogSitemap
ProjectMCP serverAboutHow we rankPress
LegalPrivacyTerms
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
Back to sindresorhus/p-each-series

Projects sharing features with P Each Series

30 open-source projects similar to sindresorhus/p-each-series, ranked by shared indexed features. Tags may describe platforms or build tools rather than the same primary purpose. Check each project’s use case, license, and deployment requirements before treating it as a replacement.

  • sindresorhus/p-mapsindresorhus avatar

    sindresorhus/p-map

    1,499View on GitHub↗

    Map over promises concurrently

    JavaScriptasyncasync-awaitasync-functions
    View on GitHub↗1,499
  • tj/coT

    tj/co

    11,856View on GitHub↗

    co is a JavaScript generator control flow library and non-blocking workflow engine. It manages asynchronous logic by using generators and promises to simulate a synchronous coding style. The project transforms generator functions into standard functions that return promises, ensuring compatibility with non-generator interfaces. It also functions as a promise-based asynchronous orchestrator that executes multiple operations concurrently through the recursive resolution of nested promise collections. The library provides high-level primitives for asynchronous flow control and non-blocking work

    JavaScript
    View on GitHub↗11,856
  • sindresorhus/delaysindresorhus avatar

    sindresorhus/delay

    626View on GitHub↗

    Delay a promise a specified amount of time

    JavaScript
    View on GitHub↗626
  • sindresorhus/p-map-seriessindresorhus avatar

    sindresorhus/p-map-series

    51View on GitHub↗

    Map over promises serially

    JavaScript
    View on GitHub↗51
  • sindresorhus/p-whilstsindresorhus avatar

    sindresorhus/p-whilst

    57View on GitHub↗

    While a condition returns true, calls a function repeatedly, and then resolves the promise

    JavaScript
    View on GitHub↗57

AI search

Explore more awesome repositories

Describe what you need in plain English — the AI ranks thousands of curated open-source projects by relevance.

Find more with AI search
  • sindresorhus/pifysindresorhus avatar

    sindresorhus/pify

    1,507View on GitHub↗

    Promisify a callback-style function

    JavaScriptpromise-utilitiespromisespromisify
    View on GitHub↗1,507
  • sindresorhus/p-pipesindresorhus avatar

    sindresorhus/p-pipe

    131View on GitHub↗

    Compose promise-returning & async functions into a reusable pipeline

    TypeScript
    View on GitHub↗131
  • mozilla/task.jsmozilla avatar

    mozilla/task.js

    1,629View on GitHub↗

    Beautiful concurrency for JavaScript

    JavaScript
    View on GitHub↗1,629
  • lpinca/valveletlpinca avatar

    lpinca/valvelet

    38View on GitHub↗

    Limit the execution rate of a function

    JavaScriptpromiserate-limitingthrottle
    View on GitHub↗38
  • caolan/asynccaolan avatar

    caolan/async

    28,150View on GitHub↗

    Async is a JavaScript asynchronous flow library designed to manage the execution and coordination of asynchronous tasks in Node.js and the browser. It provides functional utilities to wrap, process, and orchestrate complex asynchronous workflows. The library distinguishes itself through a comprehensive task orchestrator that handles dependency graphs to resolve circular references and manages concurrent task queues. It includes a unification bridge that allows callback-style and promise-based functions to operate within the same execution interface. The project covers several primary capabil

    JavaScript
    View on GitHub↗28,150
  • reactivex/rxjsReactiveX avatar

    ReactiveX/rxjs

    31,682View on GitHub↗

    RxJS is a library for reactive programming that provides a framework for composing asynchronous and event-based programs. It utilizes observable sequences to model data flows, allowing developers to manage complex sequences of events through a declarative programming interface. The library implements the observer pattern to facilitate decoupled communication between data producers and subscribers. By employing a lazy execution model, streams remain dormant until a consumer explicitly subscribes, at which point data production is triggered. This approach enables the construction of predictable

    TypeScriptjavascriptrxjs
    View on GitHub↗31,682
  • samccone/promise-semaphoresamccone avatar

    samccone/promise-semaphore

    28View on GitHub↗

    promise semaphore

    JavaScript
    View on GitHub↗28
  • sindresorhus/p-filtersindresorhus avatar

    sindresorhus/p-filter

    83View on GitHub↗

    Filter promises concurrently

    JavaScript
    View on GitHub↗83
  • sindresorhus/hard-rejectionsindresorhus avatar

    sindresorhus/hard-rejection

    107View on GitHub↗

    Promises fail silently if you don't attach a .catch() handler.

    JavaScript
    View on GitHub↗107
  • petkaantonov/bluebirdpetkaantonov avatar

    petkaantonov/bluebird

    20,515View on GitHub↗

    Bluebird is a JavaScript promise library designed for managing asynchronous operations with a custom promise implementation. It provides a framework for controlling promise lifecycles and orchestrating non-blocking programming patterns. The library distinguishes itself with an asynchronous debugging toolkit that captures long stack traces across asynchronous boundaries and a global handler for unhandled promise rejections. It includes a predicate-based error filtering system to target specific exception types and a mechanism for the deterministic cleanup of system resources. It covers a broa

    JavaScript
    View on GitHub↗20,515
  • normalize/mznormalize avatar

    normalize/mz

    1,369View on GitHub↗

    Modernize node.js to current ECMAScript specifications! node.js will not update their API to ES6+ for a while. This library is a wrapper for various aspects of node.js' API.

    JavaScript
    View on GitHub↗1,369
  • busterc/promise-do-whilstbusterc avatar

    busterc/promise-do-whilst

    3View on GitHub↗

    See Also - promise-whilst - promise-until - promise-do-until

    JavaScript
    View on GitHub↗3
  • sindresorhus/p-allsindresorhus avatar

    sindresorhus/p-all

    346View on GitHub↗

    Run promise-returning & async functions concurrently with optional limited concurrency

    TypeScript
    View on GitHub↗346
  • sindresorhus/p-anysindresorhus avatar

    sindresorhus/p-any

    57View on GitHub↗

    Wait for any promise to be fulfilled

    JavaScript
    View on GitHub↗57
  • sindresorhus/p-breaksindresorhus avatar

    sindresorhus/p-break

    24View on GitHub↗

    Break out of a promise chain

    JavaScript
    View on GitHub↗24
  • sindresorhus/p-cancelablesindresorhus avatar

    sindresorhus/p-cancelable

    450View on GitHub↗

    Create a promise that can be canceled

    JavaScript
    View on GitHub↗450
  • sindresorhus/p-catch-ifsindresorhus avatar

    sindresorhus/p-catch-if

    40View on GitHub↗

    Conditional promise catch handler

    JavaScript
    View on GitHub↗40
  • sindresorhus/p-debouncesindresorhus avatar

    sindresorhus/p-debounce

    236View on GitHub↗

    Debounce promise-returning & async functions

    JavaScript
    View on GitHub↗236
  • sindresorhus/p-defersindresorhus avatar

    sindresorhus/p-defer

    85View on GitHub↗

    Create a deferred promise

    JavaScript
    View on GitHub↗85
  • sindresorhus/p-do-whilstsindresorhus avatar

    sindresorhus/p-do-whilst

    38View on GitHub↗

    Calls a function repeatedly while a condition returns true and then resolves the promise

    JavaScript
    View on GitHub↗38
  • sindresorhus/p-eventsindresorhus avatar

    sindresorhus/p-event

    450View on GitHub↗

    Promisify an event by waiting for it to be emitted

    JavaScript
    View on GitHub↗450
  • sindresorhus/observable-to-promisesindresorhus avatar

    sindresorhus/observable-to-promise

    51View on GitHub↗

    Convert an Observable to a Promise

    JavaScript
    View on GitHub↗51
  • sindresorhus/p-finallysindresorhus avatar

    sindresorhus/p-finally

    47View on GitHub↗

    Deprecated as it's now available in all modern browsers and Node.js versions.

    JavaScript
    View on GitHub↗47
  • sindresorhus/p-foreversindresorhus avatar

    sindresorhus/p-forever

    50View on GitHub↗

    Run promise-returning & async functions repeatedly until you end it

    JavaScript
    View on GitHub↗50
  • nodeca/promise-memoizenodeca avatar

    nodeca/promise-memoize

    62View on GitHub↗

    Memoize promise-returning functions. Includes cache expire and prefetch.

    JavaScript
    View on GitHub↗62