Coder Social home page Coder Social logo

lupomontero / porch Goto Github PK

View Code? Open in Web Editor NEW
12.0 2.0 3.0 1.7 MB

Promise Orchestrator: Easily process promise batches both sequentially and concurrently, controlling concurrency and throttling.

JavaScript 100.00%
javascript promises concurrency throttling parallel series

porch's Introduction

Porch

Process promise-based tasks in series and parallel, controlling concurrency and throttling.

Node.js CI Coverage Status

Installation

npm install porch

Usage / API

Promise porch(tasks, concurrency, interval, failFast)

Arguments

  • tasks (Array): An array of tasks, where each task is a function that expects no arguments and will return a Promise.
  • concurrency (Number): Default: 1. Maximum number of tasks to run concurrently (in parallel).
  • interval (Number): Default: 0. Interval between each batch of concurrent tasks.
  • failFast (Boolean): Default: true. Whether to bail out when one of the promises fails. If set to false errors will be included in the results passed to then() instead of being passed independently via the catch() method.

Return value

A Promise that will resolve to an array with the results for each task. Results will be in the same order as in the input tasks array.

Examples

Series

Process each task after the other, sequentially. Each task will wait for the previous one to complete. Concurrency set to 1 (one task at a time).

import porch from 'porch';

const tasks = users.map(user => () => auth.deleteUser(user.localId);

porch(tasks)
  .then(console.log)
  .catch(console.error);
Batches

Process tasks in batches based on a given concurrency. In this example tasks will be processed in batches of 5 tasks each. Each batch waits for the previous one to complete and then performs its tasks in parallel.

porch(tasks, 5)
  .then(console.log)
  .catch(console.error);
Throttled

Same as example above but adding a 1000ms delay between batches.

porch(tasks, 5, 1000)
  .then(console.log)
  .catch(console.error);
failFast=false (don't bail out on errors)

Same as above, but in this case if a promise fails, processing will continue instead of stopping the whole thing. When failFast is set to false, errors will appear as the value/result for the relevant element in the results array (failed tasks/promises won't end up in the catch() method).

porch(tasks, 5, 1000, false)
  .then(console.log)

stream.Readable createStream(tasks, concurrency, interval, failFast)

Arguments

Same as porch().

Return value

A readable stream (stream.Readable) instead of a Promise. Each result will be emitted as a data event and the stream will operate in objectMode.

Examples

Handling each event independently... (old school)
import { createStrean } from 'porch';

createStream(tasks, 5, 1000, false)
  .on('error', err => console.error('error', err))
  .on('data', data => console.log('data', data))
  .on('end', _ => console.log('ended!'));
Piping to a writable stream
// This example assumes that tasks will resolve to string values so that the
// resulting stream can be directly piped to stdout.
createStream(tasks, 5, 1000, false).pipe(process.stdout);

porch's People

Contributors

dependabot[bot] avatar lupomontero avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.