User c5def102cd module 5 miesięcy temu
..
examples c5def102cd module 5 miesięcy temu
lib c5def102cd module 5 miesięcy temu
test c5def102cd module 5 miesięcy temu
.npmignore c5def102cd module 5 miesięcy temu
.travis.yml c5def102cd module 5 miesięcy temu
LICENSE c5def102cd module 5 miesięcy temu
README.md c5def102cd module 5 miesięcy temu
package.json c5def102cd module 5 miesięcy temu

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