1.0.0 • Published 4 months ago

executer v1.0.0

Weekly downloads
1
License
ISC
Repository
-
Last release
4 months ago

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
1.0.0

4 months ago

0.1.6

9 years ago

0.1.5

10 years ago

0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago