executer

Helper function to execute multiple processes with async series and exec

Usage no npm install needed!

<script type="module">
  import executer from 'https://cdn.skypack.dev/executer';
</script>

README

Executer

A module to make it easier to execute long running/process heavy processes.

Installation

  npm install executer --save

Usage

  var execute = require('executer');

  execute('ls -l', 'ps -aux', 'ffmpeg -v', function (err, res) {
    if (err)
      throw err;
    else
      console.log('All execution is done.');
  });

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.

Release History

  • 0.1.0 Initial release