Skip to content

AlloyTeam/AlloyFlow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Install

npm install alloyflow

Usage

flow of time

var alloyFlow = new AlloyFlow({
    workflow: [
        {
            work: function () { },
            start: 0
        },{
            work: function () { },
            start: 1500
        },{
            work: function () { },
            start: [720, 1000, 400, 6000]
        }
    ]
});

alloyFlow.start();

flow of task

 var alloyFlow = new AlloyFlow({
    workflow: [
        function () {
            alloyFlow.next("msg");
        },
        function (msg) {
            alloyFlow.next("msg", 2000);
        },
        function (msg) {
            
        }
    ]
});

alloyFlow.start();

Many thanks to

transformjs

Who is using AlloyFlow?

preview

License

This content is released under the MIT License.

About

made workflow simple

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published