skonq

0.1.0-5 • Public • Published

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?

Readme

Keywords

none

Package Sidebar

Install

npm i skonq

Weekly Downloads

1

Version

0.1.0-5

License

none

Last publish

Collaborators

  • segomos