testea3 e0d4df7f58 ola mundo hace 11 meses
..
examples e0d4df7f58 ola mundo hace 11 meses
lib e0d4df7f58 ola mundo hace 11 meses
test e0d4df7f58 ola mundo hace 11 meses
.npmignore e0d4df7f58 ola mundo hace 11 meses
.travis.yml e0d4df7f58 ola mundo hace 11 meses
LICENSE e0d4df7f58 ola mundo hace 11 meses
README.md e0d4df7f58 ola mundo hace 11 meses
package.json e0d4df7f58 ola mundo hace 11 meses

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