exequte

Nodejs function to execute child process in promise style

Usage no npm install needed!

<script type="module">
  import exequte from 'https://cdn.skypack.dev/exequte';
</script>

README

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