exequte
v0.0.4
Published
Nodejs function to execute child process in promise style
Downloads
33
Maintainers
Readme
exequte
Nodejs function to execute child process in promise style
Usage
Use as in examples below:
JavaScript Example
var exec = require('exequte');
exec('git', ['help']).then(function(out){
console.log(out);
}.fail(function(err){
console.log err;
});
CoffeeScript Example
exec = require 'exequte'
exec('git', ['help'])
.then (out) ->
console.log out
.fail (err) ->
console.log err