I have requirements about execute process pipeline and concurrency tasks,
1. pipe
I want to have a library, usage like below:
```
const res = func( xxx ).pipe( yyy ).pipe( zzz )
```
2. concurrency tasks
```
func( (xxx)=> {
} ,
(yyy)=> {
} ,
(zzz)=> {
}
).catch((e) => {...}).finnally (()=>{
...
})
```
is there any recommended nodejs libraries?
1. pipe
I want to have a library, usage like below:
```
const res = func( xxx ).pipe( yyy ).pipe( zzz )
```
2. concurrency tasks
```
func( (xxx)=> {
} ,
(yyy)=> {
} ,
(zzz)=> {
}
).catch((e) => {...}).finnally (()=>{
...
})
```
is there any recommended nodejs libraries?