sync-runner
v1.0.0
Published
To execute a binary executable file and return its standard output synchronization.
Downloads
25
Readme
Sync Runner
To execute a binary executable file and return its standard output synchronization. (node.js)
Now syncRunner is supporting Nodejs
v0.11.*
and iojsv1.*
and Nodejsv4.*
!
Installation
$ npm install sync-runner
Usage
var run = require("sync-runner");
var result = run("command", "current_work_directory", max_million_seconds);
console.log(result);
current_work_directory
andmax_million_seconds
are optional. You can pass onlycurrent_work_directory
ormax_million_seconds
, or neither.