kefir-process
Version:
Using kefir to create communicating processes.
25 lines (15 loc) • 468 B
Markdown
# kefir-process
[](https://travis-ci.org/LittleHelicase/kefir-process)
Simply use programs in kefirs flatMap.
## Installation
Via npm
```
npm install kefir-process
```
## Usage
Create a processor and pass it to flatMap:
```js
import {createProcess} from 'kefir-process'
Kefir.sequentially(100, ['Kefir', 'Process', 'App'])
.flatMap(createProcess('grep', ['Process']))
```