D8D 2ab642edb8 Initial commit před 1 rokem
..
examples 2ab642edb8 Initial commit před 1 rokem
lib 2ab642edb8 Initial commit před 1 rokem
test 2ab642edb8 Initial commit před 1 rokem
.npmignore 2ab642edb8 Initial commit před 1 rokem
.travis.yml 2ab642edb8 Initial commit před 1 rokem
LICENSE 2ab642edb8 Initial commit před 1 rokem
README.md 2ab642edb8 Initial commit před 1 rokem
package.json 2ab642edb8 Initial commit před 1 rokem

README.md

spawn-command Build Status

Spawn commands like child_process.exec does but return a ChildProcess.

Installation

npm install spawn-command

Usage

var spawnCommand = require('spawn-command'),
    child = spawnCommand('echo "Hello spawn" | base64');

child.stdout.on('data', function (data) {
  console.log('data', data);
});

child.on('exit', function (exitCode) {
  console.log('exit', exitCode);
});