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 🙏

© 2025 – Pkg Stats / Ryan Hefner

rafor

v1.0.2

Published

RequestAnimationFrame friendly async for iterator

Readme

rafor Build Status

This project will allow you to iterate over huge arrays asynchronously without impacting responsiveness of the application.

usage

// Let's say you have a huge array, and you want to find its maximum
// element. Once element is found you want to report it back to requestor:
var asyncFor = require('rafor');

function findMaxElement(array, cb) {
  var max = Number.NEGATIVE_INFINITY;

  asyncFor(array, visit, done);

  function visit(el, index, array) {
    if (el > max) max = el;
  }

  function done(array) {
    cb(max);
  }
}

The code above will attempt to limit its time spent within visit() function to 8 ms. This will ensure that your main JavaScript thread is not 100% busy calculating maximum, and the browser still has time to do other operations.

Unlike many other async for implementations, this iterator will attempt to maximize number of elements visited within single event loop cycle, while still limiting itself to a given time quota.

Configuration

If you want to change time quota of 8 ms to something different, you can pass it as an optional argument:

asyncFor(array, visit, done, {
  maxTimeMS: 5 // spend no more than 5 milliseconds on `visit()`
});

By default the iterator will visit every single element of your source array. If you want to change iteration step you can also pass it via configuration:

asyncFor(array, visit, done, {
  step: 3 // Visit element 0, 3, 6, 9, 12, ... and so on
});

Finally, iterator takes its opportunity to measure speed of your visit() callback during the first event loop cycle. By default it assumes that visiting 10,000 elements should be fast enough to not impact responsiveness of the browser, but if this number is too high or too low for your case, please give iterator a hint:

// Let's say our `visit()` is CPU intensive function, and we assume that
// calling visit() five times will require 10 to 16 milliseconds (which
// gives good FPS rate and responsiveess). We can tell the iterator, that
// it can meause first five calls:
asyncFor(array, visit, done, {
  probeElements: 5
});

// The iterator will keep remeasuring performance of `visit()` callback on
// every event loop cycle, and will adjust number of calls to `visit()`
// based on collected data.

install

With npm do:

npm install rafor

license

MIT