exequte

0.0.4 • Public • Published

Built with Grunt Build Status

NPM version Deps Status devDependency Status

NPM

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

Package Sidebar

Install

npm i exequte

Weekly Downloads

8

Version

0.0.4

License

none

Last publish

Collaborators

  • sergeyt