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

tinyqueue.js

v1.1.2

Published

Simple javascript concurrency control for node and the browser

Downloads

9

Readme

tinyqueue.js

A teensy tiny sequential processing queue.

Build Status Coverage Status devDependencies Status Code Climate NPM version npm

TinyQueue returns a coroutine that supports both sync and async function execution. It uses an asyncronous generator function to allow manage concurrency during task execution. All methods return the queue object for chainability.

Installing / Getting started

Install tinyqueue.js with npm or Yarn

npm install tinyqueue.js
yarn add tinyqueue.js

This will add tinyqueue.js to your package.json's dependencies.

Usage

Import the module to your script and define a new TinyQueue object by passing in "tasks" (functions) to execute. Your queue object will hold them until you execute a run command:

// define your functions
const fn1 = () => {
  return new Promise((resolve) => {
    resolve('fn1 execution!');
  });
};
const fn2 = () => { return 'fn2 execution!'; };

// place them in a queue
const queue = new TinyQueue(fn1, fn2, ...);

// start the queue
queue.run();

// wait until all tasks are processed
queue.done((results) => {
  console.log(results); // [ Promise { 'fn1 executed!' }, 'fn2 executed!' ]
});

API Reference

The full API docs/reference can be found on GitHub Pages.

Contributing

Prerequisites

Yarn is heavily favored over npm, so please make sure you have Yarn installed prior to installing dependencies and contributing.

Setting up Dev

Clone the repo and install all packages:

https://github.com/nielse63/tinyqueue.js.git
cd tinyqueue.js/
yarn install

Any work should be done files in the src/ directory.

Building

Once you have made your changes to the source file, build to the lib/ directory:

yarn run build

This will lint the source and test files, transpile the script using Babel, and rebuild the documentation.

Tests

After you've built your changes, make sure to run the test suite, and write any new tests that apply to your changes:

yarn test

Tests are run with Mocha using Chai as the assertion library. Code coverage is managed by Coveralls.

Style guide

Style is maintained with eslint, following the Prettier and XO styleguides. All JavaScript is strongly typed using Flow.

Licensing

tinyqueue.js is licensed under the MIT License. A copy can be found here.