Socket
Socket
Sign inDemoInstall

heya-async

Package Overview
Dependencies
0
Maintainers
2
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    heya-async

Asynchronous utilities: promises, deferreds.


Version published
Weekly downloads
1
decreased by-66.67%
Maintainers
2
Install size
186 kB
Created
Weekly downloads
 

Readme

Source

Async

Build status Dependencies devDependencies NPM version

Promises and operations over them; useful utility functions.

What is inside?

Practical algorithms for node.js and browsers operating on any Promises (any then()-able will do, including ES6's Promise):

  • Aggregate all asynchronous operations:
    • all() — similar to standard Promise.all(). Returns an array of results, or fails with a first failed promise.
    • par() — collects all results into an array, both normal values, and errors. Never fails.
      • Use case: collect all I/O results regardless if they failed or not.
      • Use case: wait for all asynchronous operations to finish regardless of their outcome.
  • Race asynchronous operations determing a winner:
    • race() AKA one() — similar to standard Promise.race(). Resolves or fails with the first fulfilled promise.
    • any() — resolves with a first resolved promise. Failed promises are ignored unless all of them have failed. In the latter case it fails with the value of the first one in the array.
      • Use case: use the first successful I/O request, ignore services that failed.
  • Orchestrate asynchronous functions:
    • seq() — a helper to run asynchronous operations sequentially one after another.
      • Use case: run operations, which depend on previous asynchronous results.
    • whilst() — a generalized asynchronous loop.
  • Adapters:
    • when() — adapt any value (then()-able, or a plain value) to a promise.
    • promisify() — adapt node.js asynchronous callback-style functions to promise-based functions.
  • Timeouts:
    • timeout() — resolve or reject a value after a timeout. If combine with other composition operations, like race(), it can help to implement any time-dependent conditions, e.g., timeouts on operations.
  • Specialized deferreds/promises:
    • Deferred — fast deferred implementation without built-in timeouts unlike A+ Promises. Implements progress reports, and cancellations. Very helpful for debugging because it preserves call stacks.
    • FastDeferred — just like Deferred but even faster, because it doesn't convert exceptions into failed promises implicitly. It allows to JIT all of its code, and helps to debug unexpected exceptions.

How to install

With npm:

npm install --save heya-async

With bower:

bower install --save heya-async

Documentation

All documentation can be found in project's wiki.

To get more information on underlying concepts:

Included algorithms (work across all type of promises):

Included implementations of deferreds (can be used instead or alongside with the standard Promise):

License

BSD or AFL — your choice

Versions

  • 1.0.1 — Removed a direct dependence on heya-ice in Micro.
  • 1.0.0 — Starts the new generation.

For information on all pre-1.0.0 versions, please see the commit log.

Keywords

FAQs

Last updated on 07 Jun 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc