D8D da8e66ac9e Initial commit 1 rok pred
..
examples da8e66ac9e Initial commit 1 rok pred
lib da8e66ac9e Initial commit 1 rok pred
test da8e66ac9e Initial commit 1 rok pred
.npmignore da8e66ac9e Initial commit 1 rok pred
.travis.yml da8e66ac9e Initial commit 1 rok pred
LICENSE da8e66ac9e Initial commit 1 rok pred
README.md da8e66ac9e Initial commit 1 rok pred
package.json da8e66ac9e Initial commit 1 rok pred

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