hugoWebsite/node_modules/spawn-command
Jeremy Nusser 0ab675d92b Initial commit... 🎉🎉🎉 2022-10-28 17:20:35 -05:00
..
examples Initial commit... 🎉🎉🎉 2022-10-28 17:20:35 -05:00
lib Initial commit... 🎉🎉🎉 2022-10-28 17:20:35 -05:00
test Initial commit... 🎉🎉🎉 2022-10-28 17:20:35 -05:00
.npmignore Initial commit... 🎉🎉🎉 2022-10-28 17:20:35 -05:00
.travis.yml Initial commit... 🎉🎉🎉 2022-10-28 17:20:35 -05:00
LICENSE Initial commit... 🎉🎉🎉 2022-10-28 17:20:35 -05:00
README.md Initial commit... 🎉🎉🎉 2022-10-28 17:20:35 -05:00
package.json Initial commit... 🎉🎉🎉 2022-10-28 17:20:35 -05:00

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