0.1.0-5 • Published 11 years ago

skonq v0.1.0-5

Weekly downloads
24
License
-
Repository
github
Last release
11 years ago

skonq is intended to be a lightweight library for queuing functions. This was born out of laziness - so it's very basic and simple to use. I didn't need 95% of the functionality in ASYNC or STEP and I don't like the syntax for queuing functions with those so this was created, if you need more functionality then check out those 2 great libraries.

Using SKONQ

From your project directory:

    $ npm install skonq

Within your application:

    var nq = require("skonq");
    
    var somefunction = function(){ 
        /* do some stuff here */
        nq.next();
    };
    
    nq.nq(somefunction, somefunctionsargs);

Is this All?

Long answer: yes, what more do you need?

0.1.0-5

11 years ago

0.1.0-4

11 years ago

0.1.0-3

11 years ago

0.1.0-2

11 years ago

0.1.0-1

12 years ago