Skip to content

sergeyt/exequte

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Nodejs function to execute child process in promise style

Resources

License

Stars

Watchers

Forks

Packages

No packages published