Socket
Socket
Sign inDemoInstall

run-series

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

run-series

Run an array of functions in series


Version published
Weekly downloads
1.3M
increased by2.36%
Maintainers
1
Weekly downloads
 
Created

What is run-series?

The run-series npm package is a utility that allows you to run an array of functions in series, each one running once the previous function has completed. If any functions in the series pass an error to its callback, no more functions are run, and the main callback is immediately called with the error. This package is particularly useful for managing sequences of asynchronous tasks in a clean and straightforward manner.

What are run-series's main functionalities?

Running tasks in series

This feature allows you to run multiple tasks one after another. Each task is a function that takes a callback as its only argument. Once a task completes, it calls the callback, optionally passing an error and results. If a task passes an error, the series is stopped, and the final callback is called with the error. Otherwise, after all tasks have completed, the final callback is called with an array of results.

const series = require('run-series');

series([
  function(callback) {
    // Task 1
    callback(null, 'result of task 1');
  },
  function(callback) {
    // Task 2
    callback(null, 'result of task 2');
  }
], function(err, results) {
  if (err) throw err;
  console.log(results); // ['result of task 1', 'result of task 2']
});

Other packages similar to run-series

Keywords

FAQs

Package last updated on 22 Sep 2015

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