GithubHelp home page GithubHelp logo

shellpromise's Introduction

shell promise Build Status

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.

Installation

npm install --save shellpromise

Usage

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");

Options

  • cwd to change the current working directory that the command will run on (defaults to process.cwd())
  • env to set environment variables (defaults to process.env)
  • verbose to see more output

Credits and collaboration

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.

shellpromise's People

Contributors

matthew-andrews avatar wheresrhys avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.