runstorm - v0.6.2
    Preparing search index...

    runstorm - v0.6.2

    RunStorm

    Easily run multiple commands in parallel threads.

    Reference docs: http://electrovir.github.io/runstorm

    npm i -D runstorm
    

    List the commands to run in parallel:

    npx runstorm "echo 'command 1'" "sleep 2 && echo 'command 2'"
    

    Run npx runstorm --help to see additional options.

    Commands can be run with runCommands:

    import {ColorKey, runCommands} from 'runstorm';

    await runCommands([
    {
    command: 'echo "command 1"',
    color: ColorKey.red,
    },
    {
    command: 'sleep 2 && echo "command 2"',
    color: ColorKey.blue,
    name: 'delayed',
    },
    ]);