npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@moobiapp/jueue

v1.1.3

Published

For proper coding and to run sequential asynchronous function.

Downloads

6

Readme

jueue

For proper coding and to run sequential asynchronous function.

Installation

$ npm install jueue

Usage

var jueue = require('jueue');

// To set jueue options.

jueue.set({
  running: true,
  pauseTime: 1000
});

// or

jueue.set("running", true);
jueue.set("pauseTime", 1000);

// No settings needed at the start. Because all settings have defaults.

// To use queue for functions.

jueue.get(
  function (e) {
    //...
    e.next();
  },
  function (e) {
    //...
    // If there is an error
    e.throw(error);
    // or complete jueue.
    e.done(); // this calls then function callback
  }
).then(function (result) {
  // Write function to manage done.
}).catch(function(err) {
  // Write function to catch error.
});
var jueue = require('jueue');
jueue.get(
  function (e) {
    //...
    e.next({ name: "test", model: "test", args: [1, 2] });
  },
  function (e) {
    //...
    e.next();
  },
  function test(e, one, two) {
    var modelValue = e.model;
    //...
  }
);

Methods

jueue.set([options]) or jueue.set(key, value)

Parameters:

  • [options]: Optional object containing any of the following properties:

    • running: Indicates the working status of all queues. Default value: true

    • pauseTime: Indicates the duration of next pause control. Default value: 1000

Or

  • key: String key names of the above properties (running or pauseTime).

  • value: Value of the above properties (running or pauseTime).

jueue.get(list) or jueue.get()

Parameters:

  • [list]: Required array of functions. For queue.

Or

  • [arguments]: list may write like arguments.

jueue.promise(list) or jueue.promise()

Used to get instance of promise for jueue.

Parameters:

  • [list]: Required array of functions. For queue.

Or

  • [arguments]: list may write like arguments.

jueue.catch(ecb)

Parameters:

  • ecb: Optional error function. Used to catch errors.

jueue.then(cb)

Parameters:

  • cb: Optional done function. Used to catch done.

e.next([options]) or e.next(step) or e.next(name)

Parameters:

  • [options]: Optional object containing any of the following properties:

    • step: The index of the function you want to go directly.

    • name: The name of the function you want to go directly.

    • model: The object model you want to send to the next function.

    • args: The arguments you want to send to the next function.

Or

  • step: The index of the function you want to go directly. options may write like step.

Or

  • name: The name of the function you want to go directly. options may write like name.

e.throw(err)

Parameters:

  • err: It must be instance of Error.

e.done(result)

Parameters:

  • result: Object that you want to send.

Examples

Basic Usage

This example shows the most basic way of usage.

License

This software is free to use under the JosephUz. See the LICENSE file for license text and copyright information.