testea3 e0d4df7f58 ola mundo | hace 11 meses | |
---|---|---|
.. | ||
examples | hace 11 meses | |
lib | hace 11 meses | |
test | hace 11 meses | |
.npmignore | hace 11 meses | |
.travis.yml | hace 11 meses | |
LICENSE | hace 11 meses | |
README.md | hace 11 meses | |
package.json | hace 11 meses |
Spawn commands like child_process.exec
does but return a ChildProcess
.
npm install spawn-command
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);
});