User c5def102cd module 5 luni în urmă
..
examples c5def102cd module 5 luni în urmă
lib c5def102cd module 5 luni în urmă
test c5def102cd module 5 luni în urmă
.npmignore c5def102cd module 5 luni în urmă
.travis.yml c5def102cd module 5 luni în urmă
LICENSE c5def102cd module 5 luni în urmă
README.md c5def102cd module 5 luni în urmă
package.json c5def102cd module 5 luni în urmă

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