D8D 3fa1803c80 Initial commit hai 1 ano
..
examples 3fa1803c80 Initial commit hai 1 ano
lib 3fa1803c80 Initial commit hai 1 ano
test 3fa1803c80 Initial commit hai 1 ano
.npmignore 3fa1803c80 Initial commit hai 1 ano
.travis.yml 3fa1803c80 Initial commit hai 1 ano
LICENSE 3fa1803c80 Initial commit hai 1 ano
README.md 3fa1803c80 Initial commit hai 1 ano
package.json 3fa1803c80 Initial commit hai 1 ano

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