child_process.spawn and child_process.exec as kefir streams 8)
npm install kefir-child-processchild_process.spawn and child_process.exec as kefir streams 😎
npm install kefir-child-process
``javascript
var kefir_proc = require('kefir-child-process')
var executions = kefir_proc.spawn('tail', ['-f', 'debug.log'])
var d = executions.debounce(3000)
executions.filter(500error).throttle(500).log()
``
see the node child_process docs, which this API matches.