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

async-array-wrapper

v0.0.3

Published

Wrapper to make array functions that take a callback asynchronous.

Downloads

2

Readme

async-array-wrapper

This lib wraps an array object and intercepts all iterable functions and also them to be run asynchronously.

What this is not, is a lib like async-array. When an array is iterated with async-array-wrapper, the callback function provided on the array is executed synchronously, but provides a done function to call to signal the the iterator function is truly finished.

This lib is designed to allow for arrays to be iterated then processed with asynchronous functions.

Install

Add async-array-wrapper to your package.json.

    npm install async-array-wrapper --save

Example

const fs = require('fs');
const AsyncArray = require('async-array-wrapper');

/*
 Here we want to list all sub directories within a directory. fs lends itself to asynchronous execution which we normally
 would be unable to do with the out of the box Array.map. Here, this lib is favoured over other libs, as it initiates all
 calls to the filesystem synchronously, instead of waiting for each one to finish before initiating the next one. Thus
 improving speed of execution in these kinds of situations (similarly benefits http requests).
 */

const directory = './';
const directoryMap = null;
fs.readdir(directory, 'utf-8', (err, files) => {
  new AsyncArray(files)
    .filter((done, _) => _.substr(0, 1) !== '.')
    .map((done, file) => {
      fs.stat(`${directory}/${file}`, (err, stats) => {
        if (stats.isDirectory()) {
          done(file);
        } else {
          done(null);
        }
      });
    })
    .filter((done, directory) => directory !== null)
    .then(function (done, result) {
      /* Will list all directories under `directory` */
      console.log('Found these directories:');
      console.log(result);
    });
});

Usage

The following functions are intercepted (where available):

  • forEach
  • map
  • every
  • filter
  • find
  • findIndex
  • reduce - use only with an object as an initialValue (no primitives)
  • reduceRight - use only with an object as an initialValue (no primitives)
  • some

The only difference to their Array.* equivalent is that they are passed a done function as the first argument, the standard arguments are then passed after. See MDN for standard arguments that follow on each function.

You then have two options, either return a value from your callback, or use the done function. If you return any value other than undefined, the done function is implicitly called for you.

Other non-callback taking functions on array won't automatically be queued. This is on purpose, as they aren't chainable. If you need to do something with these, you must use the new AsyncArray.then function.

This can be inserted anywhere in the chain, and as such is chainable. This exposes a done function, then a result array. For example;

const AsyncArray = require('async-array-wrapper');
const { async } = AsyncArray.utils;

new AsyncArray([1, 2, 3, 4])
  .filter((done, entry, i) => {
    /* pretend to do something asynchronous... */
    async(() => {
      /* keep odd entries only... */
      const shouldFilterOut = i % 2 === 0;
      done(shouldFilterOut);
    })
  })
  .then((done, result) => {
    console.log(`The first entry is: ${result.slice(0, 1)}`);
    /*  The first entry is: 1 */

    console.log(`The last entry is now: ${result.slice(result.length - 1)}`);
    /*  The last entry is now: 3  */

    console.log(`Our result is: [${result.join(',')}]`);
    /*  Our result is: [1,3] */
  });

Todo

  • Test all remaining wrapped methods
    • map
    • every
    • filter
    • find
    • findIndex
    • reduce
    • reduceRight
    • some