runco
v2.0.0
Published
Run npm run scripts in parallel and autoload .env
Downloads
4
Maintainers
Readme
runco
A very simple no dependencies way to run multiple npm scripts in parallel / concurrently.
It supports tail wildcards and loads environment variables from .env
files automatically.
It also allows child processes to gracefully exit on SIGINT which helps when testing things that need a shutdown procedure.
Example
This sample will run
{
"name": "some_npm_package",
"scripts": {
"dev:client": "node client/index.js",
"dev:server": "node server/index.js",
"dev": "runco dev:*"
}
}