lisa.promise
TypeScript icon, indicating that this package has built-in type declarations

2.0.0 • Public • Published

LiSA.Promise

mad promsie wrapper

just try it

install

npm install --save lisa.promise

easy use

const LiSAP = require('lisa.promise')(2)
//your action
var yourAction = name =>{
    console.log("hello  i am " + name )
    return name
    //promise is supported also
    return new Promise((r,j)=>{
        setTimeout(()=>{
            console.log('i am ' + name)
            r(name)
        },100)
    })
}
// here to set serial or parallel or mutli-line
LiSAP.queue(2)
LiSAP.parallel()
LiSAP.serial(2)
 
// your params
var names = ["LiSA" , null,"aoer" , "luna", "apporoad","rue","aphyse"]
 
// assign task
LiSAP.assignBatch(yourAction,names)
 
// action
LiSAP.action('default picar').then(names =>{
    console.log(names)
})
 
/* result:
hello  i am LiSA
hello  i am default picar
hello  i am aoer
hello  i am luna
hello  i am apporoad
hello  i am rue
hello  i am aphyse
[ 'LiSA',
  'default picar',
  'aoer',
  'luna',
  'apporoad',
  'rue',
  'aphyse' ]
 
*/
 

chain invoke

LiSAP
    .assignBatch(name=>{ console.log("hello  i am " + name ) ; return name},['LiSA','aoer'])
    .assignBatch(name=>{ console.log("hi i am " + name ) ; return name},['luna','apporoad'])
    .assignBatch(name=>{ return new Promise(r=> {console.log("hi i am promise " + name ) ; r(name) })},['luna','apporoad'])
    .assign(p=>{ console.log(' my name is ' + p) ; return p})
    .action('xxxxxx')
    .then(mina => {
        console.log(mina)
    })
    .catch(err =>{
        console.log(err)
    })
/*
 
hello  i am LiSA
hello  i am aoer
hi i am luna
hi i am apporoad
hi i am promise luna
hi i am promise apporoad
 my name is xxxxxx
[ 'LiSA', 'aoer', 'luna', 'apporoad', 'luna', 'apporoad', 'xxxxxx' ]
*/

autoAction

var LiSA = require('lisa.promise')(2)
 
LiSA.queue(2)
 
LiSA.autoAction("hello good day",{
    then : (mina) => {
        console.log( "mina are : " + mina) 
        return new Promise((r,j)=>{ setTimeout(()=>{ console.log("stoped then"); r()},2000) })}
})
 
LiSA.assignBatch(
    name=>{ console.log("hello  i am " + name ) ;
     return name
     }, ['1','2'])
 
var index = 3
setInterval(()=>{
    LiSA.assign(name=>{ 
        console.log("hello  i am " + name ) ; 
        return  new Promise((r,j)=>{  
            setTimeout(()=>{
                r(name)
            },Math.random()*1000)
        })
    },index++)
},100)
 

more demo in testMad.js

Readme

Keywords

Package Sidebar

Install

npm i lisa.promise

Weekly Downloads

5

Version

2.0.0

License

MIT

Unpacked Size

15.2 kB

Total Files

6

Last publish

Collaborators

  • apporoad