Simple, zero dependency, multiple commands runner in concurrent mode.

Installation
Yarn
yarn add --dev concurrent-run
npm
npm install --save-dev concurrent-run
Usage
CLI
concurrent-run "command1 arg" "command2 arg"
Always surround multiple commands with quotes, otherwise, everything will be treated as a single command.
API
const ConcurrentRun = ;const concurrent = ; concurrent ;
Events
data
gets called oncestderr
orstdout
of spawned process sends data.
const concurrent = ;concurrent;
close
gets called once command is finished.
const concurrent = ;concurrent;
error
gets called once an error occurs.
const concurrent = ;concurrent;
Contributing
Feel free to open issues or PRs!