
Security News
Meet Socket at Black Hat Europe and BSides London 2025
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.
until-promise
Advanced tools
A library that executes a function until its returned value satisfies some criteria.
until(aFunction, aConditionFunction, someOptions).then(...);
Supports 3 modes:
duration or retries option)retries option (retries option)duration option:=In theory (...and in practice), you can combine retries and duration options.
To "throttle" the calls, you can pass wait option. The first call is done immediately. Then, if the condition is not satisfied, it waits waitms before executing the function a second time (...and so on...)
import until from 'until-promise';
until(
// a function that takes no param
// can return any value... such as a Promise..
// `.bind(...)` as much a you want!
() => { return aValue; },
// a function that will be called with the returned/resolved value of the first function
// and that should return true if the condition is satisfied
(res) => { return res.prop === 'expectedValue'; },
// optional options:
{
// * wait: number of milliseconds between 2 function calls
wait: 500,
// * duration: the maximum number of milliseconds before rejecting
duration: 2000
// * retries: maximum number of retries before rejecting
retries: 3
}
).then(() => {
// do what you have to do
});
This library also expose a setup(options) function that allows to configure default options that will be used eveytime until is called (until setup(options) or reset() are called):
Promise: specify a Promise library like bluebird if needed (defaults to Promise which is available in nodejs and most modern browser)onError: define a custom Error handler: its signature is:// `reject` should be called exactly once.
onError({ errorType, reject, nbAttempts, startedAt, capturedResults }, options)
captureResults: if not falsy and > 0, until will cature the last X results and pass them to onError handler (capturedResults property)wait: time to wait between 2 calls - default: 0duration: max number of milliseconds before rejecting - default: Infinityretries: default number of retries before rejecting - default: InfinityNote that any of those options can also be used when invoking until(func, testFunc, options) (third param). Adding those options when invoking until will not modify the default until options
The default options are:
{
wait: 0,
captureResults: 0,
Promise,
onError({ errorType, reject, nbAttempts, startedAt, capturedResults }, options) {
let err = new Error(`condition not satified after ${Date.now() - startedAt}ms / nbAttempts: ${nbAttempts}`);
// note that you can attach properties to error if needed. For example:
err.duration = Date.now() - startedAt;
Object.assign(err, { nbAttempts, errorType, startedAt, capturedResults, options });
reject(err);
}
}
Gotcha
duration option, we cannot guarantee that it will take exactly or a most durationms, mostly because of the nature of Javascript time. Additional info here.If the condition is never satisfied and duration is not a multiple of wait,
then the returned promise might fail after Math.ceil(failAfter / wait) * wait ( which is > failAfter)
This will resolve after ~600ms:
let a = 1;
// `a` will equal 2 after 500ms
setTimeout(() => { a = 2; }, 500);
return until(
function () { return Promise.resolve(a); },
(res) => res === 2,
// the function will be executed at:
// ~0ms, ~200ms, ~400ms, ~600ms
{ wait: 200, duration: 1000 }
);
This is rejected after ~900ms:
let a = 1;
// `a` will equal to 2 after 5000ms
setTimeout(() => { a = 2; }, 5000);
return until(
function () { return Promise.resolve(a); },
(res) => res === 2,
// the function will be executed at:
// ~0ms, ~200ms, ~400ms and should fail at ~500ms (while waiting 200ms before doing the 4th call)
{ wait: 200, duration: 500 }
);
This library has no dependencies on bluebird. Just a
dev dependencyso I can testsetup({ promise })function.
If you want to use a custom Promise library (to benefit
from some extra chaining methods exposed by this library for example...),
use can use setup({ promise: customPromiseLibrary});
Here is an example with bluebird:
import until, {setup as untilSetup } from 'until-promise';
import bluebird as bluebird;
untilSetup({promise: bluebird});
return until(doSomething, conditionFunction)
// `map` is available with bluebird, not with regular Promise
.map(() => {...} );
Note: you don't have to call setup() in all the files that imports unitl-promise: any call to setup() from a js file will affect another file that also uses until-promise (in the same node process of course).
FYI: instead of using setup(), you can also wrap the until() call into a promiseLib.resolve(), like this:
return Bluebird.resolve(until(doSomething, conditionFunction)
// `map()` is not a regular Promise method... yet...
.map(() => {...} );
... Because I tend to forget things (and change way I do things between projects...)...
You got a green build for a branch, you merged that branch in master, master is clean... So:
npm version [major|minor|patch]FAQs
utility functions that poll until a condition is met
The npm package until-promise receives a total of 27 weekly downloads. As such, until-promise popularity was classified as not popular.
We found that until-promise demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.