Maik 79c46dcb5d modul 3 gadi atpakaļ
..
examples 79c46dcb5d modul 3 gadi atpakaļ
lib 79c46dcb5d modul 3 gadi atpakaļ
test 79c46dcb5d modul 3 gadi atpakaļ
.npmignore 79c46dcb5d modul 3 gadi atpakaļ
.travis.yml 79c46dcb5d modul 3 gadi atpakaļ
LICENSE 79c46dcb5d modul 3 gadi atpakaļ
README.md 79c46dcb5d modul 3 gadi atpakaļ
package.json 79c46dcb5d modul 3 gadi atpakaļ

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