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

chunked-queue

v0.1.4

Published

Manage long-running tasks without losing interactivity

Downloads

68

Readme

chunked-queue

Manage long-running tasks without losing interactivity

tests

Motivation

Long-running tasks in JavaScript can block the event loop. If another, higher-priority task needs to run in the meantime, it will have to wait until the current task is finished.

One solution for this is to break the long-running task into chunks. Then, each chunk can be run in a setTimeout callback. If a higher-priority task comes up, it will be able to run in between the chunks.

chunked-queue manages the list of chunks for you. You can even give it multiple lists of chunks, and set (and update) priorities for each list, to make sure the most urgent task finishes first.

Instead of setTimeout, chunked-queue uses zero-timeout, to avoid the minimum delay between setTimeout callbacks.

Usage

chunked-queue is provided as an ESM import.

import * as chunkedQueue from 'chunked-queue';

To initialize a new queue, call the init method, with no parameters:

const queue = chunkedQueue.init();

API

The initialized queue object exposes four methods

enqueueTask

const taskId = queue.enqueueTask(newTask);

The supplied newTask object may have the following properties:

  • newTask.chunks (REQUIRED): An array of zero-argument functions, in the order in which they are to be called. NOTE: These are assumed to be synchronous
  • newTask.getPriority (OPTIONAL): A method that when called, returns a priority number for this task. Lower priority numbers will be run first. If not supplied, this task will be given a constant priority of 0.

The return value is an integer ID, which can later be used to cancel the task.

cancelTask

queue.cancelTask(taskId);

Cancels the task represented by the supplied taskId.

sortTasks

queue.sortTasks();

Sorts the tasks in the queue, according to the values returned by the .getPriority() method on each task.

This lets you re-set the priorities of the tasks after they are queued. Simply update the .getPriority methods to return smaller values for the tasks which have become more urgent.

countTasks

numTasks = queue.countTasks();

Returns the number of tasks in the queue