1.0.0 • Published 9 years ago

fluent-exec v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

Build Status Coverage Status

fluent-exec

A fluent interface for shell execution in Node.js

var exec = require('fluent-exec');

exec.command('echo your command')
  .then(function(stdout) {
    // the command was successful
  })
  .catch(function(reason) {
    // an error occurred
  });
1.0.0

9 years ago