Socket
Socket
Sign inDemoInstall

skonq

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

skonq

A super lightweight eN-Queuing library to help make things run in order. This is very lightweight, it's meant only to make queuing callbacks easier - if you need the flexibility of ASYNC or STEP then use those.


Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

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?

Keywords

FAQs

Package last updated on 29 Dec 2012

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc