Is there any recommend pipe and async concurrency node.js libraries ?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • markleo
    New Member
    • May 2022
    • 7

    Is there any recommend pipe and async concurrency node.js libraries ?

    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?
Working...