GithubHelp home page GithubHelp logo

lisa.promise's Introduction

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

lisa.promise's People

Contributors

apporoad avatar

Watchers

James Cloos avatar  avatar  avatar

lisa.promise's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.