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 🙏

© 2026 – Pkg Stats / Ryan Hefner

sleep-await

v1.0.3

Published

A comprehensive async timing utility featuring abortable sleep, timeout, retry, and polling (waitUntil). TypeScript native.

Readme

sleep-await ⏳

The Modern, Abortable, and Precise Async Timing Utilities for Node.js & Browser.

npm version minzipped size License: ISC

sleep-await is a lightweight, zero-dependency collection of async timing utilities. It goes beyond simple pausing, offering robust tools for timeouts, polling, retries, and cancellation (AbortSignal).

Why sleep-await?

| Feature | sleep-await | Standard setTimeout | delay package | | :--- | :---: | :---: | :---: | | TypeScript Native | ✅ | ✅ | ✅ | | CommonJS & ESM | ✅ | ⚠️ | ❌ (ESM only) | | AbortSignal (Cancel) | ✅ | ❌ | ✅ | | Timeout Wrapper | ✅ | ❌ | ❌ | | Polling (WaitUntil) | ✅ | ❌ | ❌ | | Retry Utility | ✅ | ❌ | ❌ |

Installation

npm install sleep-await
# or
yarn add sleep-await
# or
pnpm add sleep-await

Usage

1. Sleep (Advanced)

Standard pause, but with AbortSignal support.

import { sleep } from 'sleep-await';

async function performTask() {
  console.log('Start');
  await sleep(1000); // Wait for 1 second
  console.log('End');
}

// With AbortSignal
const controller = new AbortController();
setTimeout(() => controller.abort(), 500); // Abort after 500ms

try {
  await sleep(2000, { signal: controller.signal });
} catch (error) {
  console.log('Sleep was aborted!'); // This will run
}

2. Timeout

Wrap any promise with a strict timeout.

import { timeout } from 'sleep-await';

try {
  const data = await timeout(fetch('https://slow-api.com'), 1000);
} catch (error) {
  console.error('Request timed out!');
}

3. WaitUntil (Polling)

Wait for a condition to become true. Perfect for integration tests or waiting for resources.

import { waitUntil } from 'sleep-await';

await waitUntil(() => db.isConnected(), {
  interval: 100, // Check every 100ms
  timeout: 5000, // Give up after 5 seconds
});

4. Retry

Retry a failing async operation with exponential backoff.

import { retry } from 'sleep-await';

await retry(() => api.fetchData(), {
  retries: 3,
  delay: 200, // Start with 200ms delay
  backoffFactor: 2 // 200ms -> 400ms -> 800ms
});

Legacy Support (v1.0.x Users)

The original sleepAwait function is preserved but deprecated.

import { sleepAwait } from 'sleep-await';

await sleepAwait(1000); // Still works exactly as before!

License

ISC