Executes some shell, returns a promise.
Internally this library uses spawn so that when verbose is set to true you can see the live output from the command — you don't have to wait for the process to exit to know what has happened (useful for a slow process or a long-running process).
Warning: This micro-library doesn't force you to use any particular Promise implementation by using whatever Promise has been defined as globally. This is so that you may use any ES6 standard Promise compliant library - or, of course, native ES6 Promises.
npm install --save shellpromise
var shellpromise = require('shellpromise');
shellpromise("echo 'hello world'")
.then(function(output) {
console.log(output); // hello world\n
});
// For advanced debug pass in `{ verbose: true }` as the second parameter
shellpromise("echo 'hello world'", { verbose: true });
// shellpromise: about to spawn echo hi
// shellpromise: echo output: hi
// To stop stderr from getting into the output redirect with `2>/dev/null`
shellpromise("ehco 'hello world' 2>/dev/null");cwdto change the current working directory that the command will run on (defaults toprocess.cwd())envto set environment variables (defaults toprocess.env)verboseto see more output
The lead developer of shell promise is Matt Andrews at the Financial Times. All open source code released by the FT is licenced under the MIT licence. We welcome comments, feedback and suggestions. Please feel free to raise an issue or pull request.