Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

async-array

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

async-array

A sane control flow library

  • 0.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
20
increased by1900%
Maintainers
1
Weekly downloads
 
Created
Source

AsyncArray

Yet another control flow library after getting fustrated with previous ones.

Usage

The next callback takes the arguments (error, data)

var AsyncArray = require('async-array')

var array = new AsyncArray([1, 2, 3, 4])

array
  .map(function (item, i, next) {
    db.query('SELECT * FROM x WHERE id = ?', [item], next)
  })
  .done(function (error, results) {
    console.log("Got me database listings partner!")
  })
  .forEach(function (db_result, i, next) {
    doSomethingAsync(db_result, next)
  })
  .exec()

As you can see, you can chain stuff and the result is passed along from the previous operation. If you don't call exec immediately you can store the operation to be executed at some later time.

AsyncArray inherits from Array with the following methods added:

  • map
  • mapSerial
  • filter
  • filterSerial
  • forEach
  • forEachSerial

Serial methods do things one after another instead of in parallel.

Keywords

FAQs

Package last updated on 25 Mar 2013

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc