tq

0.2.5 • Public • Published

Build Status

TQ is a flexible, tiny queue library for node.js

Example

var queue = require("tq").create().start();
 

Another variation

var queue = require('tq').queue();
 
 
[
    function() {
        this();
    },
    function() {
        this()
    },
    function() {
        this();
    }
].forEach(queue.push);
 
queue.start();

Api

queue.push

pushes a queue to the end

queue.unshift

pushes a queue to the beginning (next up)

queue.now(callback)

queue.then(callback)

callback queue.wait()

queue.start

starts a queue

queue.stop

stops a queue

Readme

Keywords

none

Package Sidebar

Install

npm i tq

Weekly Downloads

6,090

Version

0.2.5

License

none

Last publish

Collaborators

  • architectd
  • crcn