What is npm-run-all?
The npm-run-all package is a CLI tool to run multiple npm-scripts in parallel or sequential order. It is useful for orchestrating complex build processes and can be used to simplify scripts in the 'package.json' file of a Node.js project.
What are npm-run-all's main functionalities?
Run tasks sequentially
This command will run the 'clean' task first, then 'build:css', and finally 'build:js' in sequential order.
npm-run-all clean build:css build:js
Run tasks in parallel
This command will run all tasks that match the pattern 'watch:*' simultaneously.
npm-run-all --parallel watch:*
Run a mix of sequential and parallel tasks
This command will run the 'clean' task first, then all 'build:*' tasks in parallel, and finally all 'test:*' tasks in sequential order.
npm-run-all clean --parallel build:* --sequential test:*
Use with npm lifecycle events
This example shows how to use npm-run-all within the 'scripts' section of 'package.json' to run the 'serve' and 'watch' tasks in parallel when the 'start' script is invoked.
"scripts": { "start": "npm-run-all --parallel serve watch" }
Other packages similar to npm-run-all
concurrently
Concurrently is similar to npm-run-all in that it can run multiple commands concurrently. It's a more general-purpose tool that can run arbitrary commands, not just npm scripts, and provides more options for output formatting.
parallelshell
Parallelshell is another alternative that can run multiple npm scripts in parallel. It is less feature-rich compared to npm-run-all and has been deprecated in favor of npm-run-all due to various issues.
run-p
run-p is a part of the npm-run-all package and can be used independently. It specifically focuses on running multiple npm scripts in parallel, similar to the '--parallel' option in npm-run-all.
run-s
run-s is also a part of the npm-run-all package and can be used on its own. It is designed to run multiple npm scripts sequentially, similar to the default behavior of npm-run-all without the '--parallel' flag.
npm-run-all
A CLI tool to run multiple npm-scripts in parallel or sequential / serial.
> npm-run-all clean lint build:*
> npm-run-all clean --parallel "build:* -- --watch"
Installation
npm install npm-run-all
- This package works in both Windows and UNIX-like environments.
- This package is tested in the follow node versions.
0.10
(requires npm >= 2.0.0
, so please run npm install -g npm@latest
)0.12
4.x
5.x
Usage
Usage: npm-run-all [...tasks] [OPTIONS]
Run specified tasks.
Options:
-h, --help Print this text.
-v, --version Print version number.
-c, --continue-on-error Set the flag to ignore errors to the current
group of tasks.
-l, --print-label Set the flag to print the task name as a prefix
on each line of output, to the current group of
tasks.
-n, --print-name Set the flag to print the task name before
running each task, to the current group of
tasks.
--silent Set "silent" to the log level of npm.
-p, --parallel [...tasks] Run a group of tasks in parallel.
e.g. 'npm-run-all -p foo bar' is similar to
'npm run foo & npm run bar'.
-P [...tasks] Run a group of tasks in parallel as ignoring
errors. This is shorthand of '-p -c [...tasks]'.
-s, --sequential [...tasks] Run a group of tasks in sequential.
--serial [...tasks] '--serial' is a synonym of '--sequential'.
e.g. 'npm-run-all -s foo bar' is similar to
'npm run foo && npm run bar'.
-S [...tasks] Run a group of tasks in sequential as ignoring
errors. This is shorthand of '-s -c [...tasks]'.
Run tasks sequentially / serially
npm-run-all build:html build:js
This is same as npm run build:html && npm run build:js
.
Note: If a task exited with non zero code, the following tasks are not run.
Run tasks in parallel
npm-run-all --parallel watch:html watch:js
This is same as npm run watch:html & npm run watch:js
.
Of course, this works on Windows as well!
Note: If a task exited with non zero code, the other tasks and those descendant processes are killed with SIGTERM
(On Windows, with taskkill.exe /F /T
).
Run a mix of sequential and parallel tasks
npm-run-all clean lint --parallel watch:html watch:js
- First, this runs
clean
and lint
sequentially / serially. - Next, runs
watch:html
and watch:js
in parallell.
npm-run-all a b --parallel c d --sequential e f --parallel g h i
or
npm-run-all a b --parallel c d --serial e f --parallel g h i
- First, runs
a
and b
sequentially / serially. - Second, runs
c
and d
in parallell. - Third, runs
e
and f
sequentially / serially. - Lastly, runs
g
, h
, and i
in parallell.
Run with arguments
npm-run-all "delay 3000" --parallel watch:*
npm-run-all --parallel "build:* -- --watch"
We can enclose a script name or a pattern in quotes to use arguments.
When you use a pattern, arguments are forwarded to every matched task.
An example: https://gist.github.com/mysticatea/34949629c9e0a01a9e7d
See also: https://docs.npmjs.com/cli/run-script
Glob-like pattern matching for task names
npm-run-all --parallel watch:*
In this case, runs sub tasks of watch
. e.g. watch:html
, watch:js
.
But, doesn't run sub-sub tasks. e.g. watch:js:index
.
npm-run-all
reads the actual npm-script list from package.json
in the current directory.
npm-run-all --parallel watch:**
If we use a globstar **
, runs both sub tasks and sub-sub tasks.
This matching rule is similar to glob.
The Difference is one -- the separator is :
, instead of /
.
Continue on error
We can use --continue-on-error
option to ignore errors.
npm-run-all --sequential --continue-on-error foo bar
npm-run-all --parallel --continue-on-error foo bar
npm-run-all
stops subsequence when a task exited with non-zero code by default.
But when --continue-on-error
was specified, npm-run-all
continues subsequence on error.
There are shorthands.
npm-run-all -S foo bar
npm-run-all -P foo bar
Node API
var runAll = require("npm-run-all");
runAll
var promise = runAll(patterns, options);
Run npm-scripts.
- patterns
string|string[]
-- Glob-like patterns for task names. - options
object
- options.parallel
boolean
--
A flag to run tasks in parallel.
Default is false
. - options.continueOnError
boolean
--
A flag to ignore errors.
Default is false
. - options.stdin
stream.Readable|null
--
A readable stream to send to the stdin of npm-scripts.
Default is nothing.
Set process.stdin
in order to send from stdin. - options.stdout
stream.Writable|null
--
A writable stream to receive from the stdout of npm-scripts.
Default is nothing.
Set process.stdout
in order to print to stdout. - options.stderr
stream.Writable|null
--
A writable stream to receive from the stderr of npm-scripts
Default is nothing.
Set process.stderr
in order to print to stderr. - options.taskList
string[]|null
--
A string array that is all task names.
By default, reads from package.json
in the current directory. - options.packageConfig
object|null
--
A map-like object to overwrite package configs.
Keys are package names.
Every value is a map-like object (Pairs of variable name and value).
e.g. {"npm-run-all": {"test": 777, "test2": 333}}
Default is null
. - options.silent
boolean
--
The flag to set silent
to the log level of npm.
Default is false
.
runAll
returns a promise that becomes fulfilled when all tasks are completed.
The promise will become rejected when any of the tasks exit with a non-zero code.
See also: https://doc.esdoc.org/github.com/mysticatea/npm-run-all/