GithubHelp home page GithubHelp logo

node-spawns's Introduction

Build Status NPM version Dependency Status

spawns

I really hate to seperate the command and arguments when using spawn, and I hate to spawn things on Windows, so I made spawns.

Spawns could run a list of commands on both widnows and linux. Spawns supports to execute commands with the similar API of child_process.spawn, using options.stdio, streamed stdin and stdout.

Synopsis

spawns(commands, options);
spawns(command, [args], options);
spawns(['npm install', 'grunt --verbose'], {
	stdio: 'inherit'

}).on('close', function(code, signal){
	console.log('close with code:', code );
});

Installation

npm install spawns --save

Usage

spawns(...) returns a EventEmitter.

Arguments

commands

type Array.<string>

Array of command strings. Notice that the command here is not a "ls ['-al']" way, but like "ls -al".

options

type Object

options is the same argument as require('child_process').spawn.

Events

Event: 'close'

  • code Number the exit code, if it exited normally.
  • signal String the signal passed to kill the child process, if it was killed by the parent.

This event is emitted when the stdio streams of all child processes have all terminated, or if there are any error encountered. This is distinct from 'exit', since multiple processes might share the same stdio streams.

Event: 'exit'

Event: 'child_close'

Event: 'child_exit'

Event: 'error'

  • err Error Object the error.

Emitted when:

  1. The process could not be spawned, or
  2. The process could not be killed, or
  3. Sending a message to the child process failed for whatever reason.

Note that the exit-event may or may not fire after an error has occured. If you are listening on both events to fire a function, remember to guard against calling your function twice.

node-spawns's People

Watchers

Kael avatar James Cloos avatar  avatar

node-spawns's Issues

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.