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 kevinoid/promise-nodeify

Projects sharing features with Promise Nodeify

30 open-source projects similar to kevinoid/promise-nodeify, 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.

  • wbinnssmith/promise-methodwbinnssmith avatar

    wbinnssmith/promise-method

    2View on GitHub↗

    Wraps a function and returns one that always returns a promise. API-compatible with bluebird's Promise.method.

    JavaScript
    View on GitHub↗2
  • 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
  • busterc/promise-do-untilbusterc avatar

    busterc/promise-do-until

    1View on GitHub↗

    :loop: Calls a function repeatedly until a condition returns true and then resolves the promise

    JavaScript
    View on GitHub↗1
  • mozilla/task.jsmozilla avatar

    mozilla/task.js

    1,629View on GitHub↗

    Beautiful concurrency for JavaScript

    JavaScript
    View on GitHub↗1,629
  • samccone/promise-semaphoresamccone avatar

    samccone/promise-semaphore

    28View on GitHub↗

    promise semaphore

    JavaScript
    View on GitHub↗28
  • sindresorhus/delaysindresorhus avatar

    sindresorhus/delay

    626View on GitHub↗

    Delay a promise a specified amount of time

    JavaScript
    View on GitHub↗626

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/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
  • sindresorhus/loud-rejectionsindresorhus avatar

    sindresorhus/loud-rejection

    282View on GitHub↗

    By default, promises fail silently if you don't attach a .catch() handler to them.

    JavaScript
    View on GitHub↗282
  • sindresorhus/make-synchronoussindresorhus avatar

    sindresorhus/make-synchronous

    328View on GitHub↗

    Make an asynchronous function synchronous

    JavaScript
    View on GitHub↗328
  • 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-each-seriessindresorhus avatar

    sindresorhus/p-each-series

    53View on GitHub↗

    Iterate over promises serially

    JavaScript
    View on GitHub↗53
  • 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/p-filtersindresorhus avatar

    sindresorhus/p-filter

    83View on GitHub↗

    Filter promises concurrently

    JavaScript
    View on GitHub↗83
  • 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-ifsindresorhus avatar

    sindresorhus/p-if

    64View on GitHub↗

    Conditional promise chains

    TypeScript
    View on GitHub↗64
  • sindresorhus/p-is-promisesindresorhus avatar

    sindresorhus/p-is-promise

    45View on GitHub↗

    Check if something is a promise

    JavaScript
    View on GitHub↗45
  • sindresorhus/p-lazysindresorhus avatar

    sindresorhus/p-lazy

    284View on GitHub↗

    Create a lazy promise that defers execution until it's awaited or when .then() or .catch() is called

    JavaScript
    View on GitHub↗284
  • sindresorhus/p-limitsindresorhus avatar

    sindresorhus/p-limit

    2,887View on GitHub↗

    Run multiple promise-returning & async functions with limited concurrency

    JavaScript
    View on GitHub↗2,887
  • sindresorhus/p-logsindresorhus avatar

    sindresorhus/p-log

    30View on GitHub↗

    Log the value/error of a promise

    JavaScript
    View on GitHub↗30
  • sindresorhus/p-mapsindresorhus avatar

    sindresorhus/p-map

    1,499View on GitHub↗

    Map over promises concurrently

    JavaScriptasyncasync-awaitasync-functions
    View on GitHub↗1,499
  • sindresorhus/p-map-seriessindresorhus avatar

    sindresorhus/p-map-series

    51View on GitHub↗

    Map over promises serially

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

    sindresorhus/p-memoize

    442View on GitHub↗

    Memoize promise-returning & async functions

    TypeScript
    View on GitHub↗442
  • sindresorhus/p-pipesindresorhus avatar

    sindresorhus/p-pipe

    131View on GitHub↗

    Compose promise-returning & async functions into a reusable pipeline

    TypeScript
    View on GitHub↗131
  • sindresorhus/p-progresssindresorhus avatar

    sindresorhus/p-progress

    765View on GitHub↗

    Create a promise that reports progress

    TypeScript
    View on GitHub↗765