D8D da8e66ac9e Initial commit 1 năm trước cách đây
..
examples da8e66ac9e Initial commit 1 năm trước cách đây
lib da8e66ac9e Initial commit 1 năm trước cách đây
test da8e66ac9e Initial commit 1 năm trước cách đây
.npmignore da8e66ac9e Initial commit 1 năm trước cách đây
.travis.yml da8e66ac9e Initial commit 1 năm trước cách đây
LICENSE da8e66ac9e Initial commit 1 năm trước cách đây
README.md da8e66ac9e Initial commit 1 năm trước cách đây
package.json da8e66ac9e Initial commit 1 năm trước cách đây

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