npm.io
0.0.12 • Published 6 years ago

@vimlet/commons-run

Licence
MIT
Version
0.0.12
Deps
1
Size
4 kB
Vulns
0
Weekly
0

Run

Request manager.

Installation

npm install @vimlet/commons-run

It will be also installed as a module within @vimlet/commons

Usage

run.exec(command, options, doneHandler)

Runs a file or command and streams its output.

  • command: File or command to be executed.
  • options:
  1. execHandler: Default output callback function(out, error), redirects stdout when provided.
  2. args: Executable arguments(string[]).
  3. workingDirectory: The path from where the executable will run.
  • doneHandler: Default done callback function(error, exitCode).

run.fetch(command, options, doneHandler)

Runs a file or command and buffers its output.

  • command: File or command to be executed.
  • options:
  1. args: Executable arguments(string[]).
  2. workingDirectory: The path from where the executable will run.
  • doneHandler: Default done callback function(error, exitCode).

License

This project is under MIT License. See LICENSE for details.