run-parallel

Run an array of functions in parallel

Github星跟蹤圖

run-parallel travis npm downloads javascript style guide

Run an array of functions in parallel

parallel Sauce Test Status

install

npm install run-parallel

usage

parallel(tasks, [callback])

Run the tasks array of functions in parallel, without waiting until the previous
function has completed. If any of the functions pass an error to its callback, the main
callback is immediately called with the value of the error. Once the tasks have
completed, the results are passed to the final callback as an array.

It is also possible to use an object instead of an array. Each property will be run as a
function and the results will be passed to the final callback as an object instead of
an array. This can be a more readable way of handling the results.

arguments
  • tasks - An array or object containing functions to run. Each function is passed a
    callback(err, result) which it must call on completion with an error err (which can
    be null) and an optional result value.
  • callback(err, results) - An optional callback to run once all the functions have
    completed. This function gets a results array (or object) containing all the result
    arguments passed to the task callbacks.
example
var parallel = require('run-parallel')

parallel([
  function (callback) {
    setTimeout(function () {
      callback(null, 'one')
    }, 200)
  },
  function (callback) {
    setTimeout(function () {
      callback(null, 'two')
    }, 100)
  }
],
// optional callback
function (err, results) {
  // the results array will equal ['one','two'] even though
  // the second function had a shorter timeout.
})

This module is basically equavalent to
async.parallel, but it's
handy to just have the one function you need instead of the kitchen sink. Modularity!
Especially handy if you're serving to the browser and need to reduce your javascript
bundle size.

Works great in the browser with browserify!

see also

license

MIT. Copyright (c) Feross Aboukhadijeh.

主要指標

概覽
名稱與所有者feross/run-parallel
主編程語言JavaScript
編程語言JavaScript (語言數: 1)
平台
許可證MIT License
所有者活动
創建於2014-04-12 09:24:31
推送於2023-02-27 23:50:37
最后一次提交2021-02-09 20:30:21
發布數17
最新版本名稱v1.2.0 (發布於 2021-02-09 18:57:54)
第一版名稱v0.1.0 (發布於 2014-04-11 22:25:44)
用户参与
星數385
關注者數9
派生數16
提交數90
已啟用問題?
問題數8
打開的問題數1
拉請求數10
打開的拉請求數0
關閉的拉請求數7
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?