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-wait-for-promise

v1.3.0

Published

Wait for a condition or timeout to occur

Downloads

35

Readme

async-wait-for-promise

Re-run a given asynchronous function (any function which returns a Promise), waiting for that function's result to be non-null within a bounded timeframe (timeout).

This project assumes you already have either platform support for promises (Node 0.12+) or you have a polyfill like es6-promise.

Installation

$ npm install async-wait-for-promise

Arguments

| Argument | Type | Description | |-------------------|----------------------------|--------------------------------------------------------------| | fn | () => Promise<T \| null> | async function to run as a check (returns a value or null) | | opts.intervalMs | number | How often the function should be checked, in milliseconds | | opts.timeoutMs | number | Timeout in milliseconds |

Usage

Provide a function (fn) that produces a value or null. Checking will continue until the function provides a non-null value (and return that value).

Example

Given db.query('<some identifier>') function that returns:

  • the object that you're looking for
  • null when the object is missing

Here is how you'd use async-wait-for-promise to wait for completion:

  const retrievedObject = await waitFor(() => db.query('object-id'));

A slightly more complete solution with error handling:

import { waitFor, TimeoutError } from "async-wait-for-promise"

// Try to find an object that is being created somewhere else,
// once the object is present, it will be returned as the result
// (default timeout is 10 seconds)
try {
  const retrievedObject = await waitFor(() => db.query('object-id'));
  console.log("retrieved object:", retrievedObject);
} catch (err) {
    if (err instanceof TimeoutError) {
      // Handle timeout error
    }

    // Handle unexpected error
}

NOTE The function you pass to waitFor must return null when it is "not ready", and some non-null value otherwise. false is a non-null value, and will cause waitFor to finish.

ES2015 (async/await)

import { waitFor } from "async-wait-for-promise";

// Initial state
let a = 1;

// Add 1 every second
const interval = setInterval(() => a++, 1000);

// Wait for a to equal 5
const result = await waitFor(
  // remember, we return null to indicate to keep checking
  async () => a >= 5 || null,
  { timeoutMs: 10 * 1000 },
);
// At this point, result === true

clearInterval(interval);

ES6

"use strict";

const { waitFor, TimeoutError } = require("async-wait-for-promise");

waitFor(() => functionThatReturnsNullUntilTheRealValue())
  .then(result => console.log("result was:", result))
  .catch(err => {
    if (err instanceof TimeoutError) {
      // Handle timeout error (by default 10 seconds)
    }

    // Handle some unexpected error
  })

FAQ

Why use null as an indicator for termination?

Using null is generally a mistake in the presences of better types, but this library uses null to indicate a very specific state -- the computation you passed resolving to a value that is not satisfactory. null is nice for this purpose as opposed to a general "falsy" check as false could very well be a value that the function should return, where null is less likely to be (how often do you write functions that are supposed to return null?).