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

blockit

v1.0.0

Published

Provides functions to manage Promise execution. Provides blocking, stalling, and pacing execution of a callback function to an array of elements

Downloads

8

Readme

BlockIt

Promises are a great addition to JavaScript, but if you're creating a lot of requests to a rate limited or fragile API, you need some throttling not offered out of the box by Promises.

BlockIt offers ways of throttling Promises, either through executing your tasks 1 by 1 blocking style or setting a timeout in between execution of tasks.

All functions return a Promise, and results are stored in an array that is resolved when all array items have been passed to the callback.

blockIt guarantees order of results in the resolved array will correspond to the provided input array, while stallIt and paceIt append to the array as their Promises resolve.

Usage

Import

const blockIt = require('blockIt').blockIt;
const stallIt = require('blockIt').stallIt;
const paceIt = require('blockIt').paceIt;

blockIt

Each array item is passed into awesomeFunction synchronously, the next item doesn't execute until the previous resolves.

const awesomeFunction = () => Promise.resolve();
const awesomeArr = ['first', 'second'];

blockIt(awesomeFunction, awesomeArr)
    .then((result) => {
        // Do something awesome with your result
    });

stallIt

A provided interval is used as a buffer between function executions.

// Pass the next array item into the function every half-second
stallIt(awesomeFunction, awesomeArr, 500)
    .then((result) => {
        // Do more awesome stuff with your result
    });

paceIt

Similar to stallIt, but instead of an interval, pass in the desired amount of executions to allow per second. Useful for rate limited API's.

// perform 20 awesomeFunctions a second
paceIt(awesomeFunction, awesomeArr, 20)
    .then((result) => {
        // Fickle API limits? Have no fear!
    });