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

directus-timeouts

v0.1.0

Published

Opinionated timeout tiers, retry, and exponential backoff helpers for Directus. Drop into the SDK or any fetch/axios client to stop random 30s hangs.

Readme

directus-timeouts

Opinionated timeout tiers, retry, and exponential-backoff helpers for Directus clients. Tune by tier instead of hand-coding timeouts on every call. Works with the Directus SDK, plain fetch, or axios.

npm install directus-timeouts

Why

The Directus SDK doesn't ship timeout or retry primitives. Every consumer reinvents:

  • "What timeout do I use for this kind of query?"
  • "Should I retry on 502? On ECONNRESET?"
  • "How do I add backoff without pulling in a 200KB dep?"

This package gives you four tuned tiers (fast / standard / heavy / critical), a retryable-error matcher that matches what Directus actually returns under load, and a tieredFetch wrapper you can drop straight into createDirectus(...).with(rest({ fetch: tieredFetch("standard") })).

Tiers (defaults, ms)

| Tier | Timeout | Use for | | --- | --- | --- | | fast | 8,000 | Single-record fetches, simple filters | | standard | 15,000 | Most reads | | heavy | 25,000 | Complex filters, deep relations, exports | | critical | 45,000 | File uploads, batch writes, "must succeed" |

Usage with the Directus SDK

import { createDirectus, rest, readItems } from "@directus/sdk";
import { tieredFetch, withRetry } from "directus-timeouts";

const directus = createDirectus(process.env.DIRECTUS_URL!).with(
  rest({ fetch: tieredFetch("standard") }),
);

// Add retry + backoff to any call:
const posts = await withRetry(() => directus.request(readItems("posts")));

Usage with plain fetch

import { tieredFetch } from "directus-timeouts";

const f = tieredFetch("heavy");
const res = await f("https://cms.example.com/items/big-export");

Usage with axios

import axios from "axios";
import { createAxiosConfig } from "directus-timeouts";

await axios.get("/items/posts", createAxiosConfig("fast"));

API

getTimeout(tier?: TimeoutTier, overrides?): number
backoffDelay(attempt: number, options?: RetryOptions): number
isRetryableError(error: unknown): boolean
withRetry<T>(fn: () => Promise<T>, options?: RetryOptions & { onRetry? }): Promise<T>
tieredFetch(tier?: TimeoutTier, options?: { overrides?; baseFetch? }): typeof fetch
createAxiosConfig(tier?, headers?): { timeout, headers }

DEFAULT_TIMEOUTS // { fast, standard, heavy, critical }
DEFAULT_RETRY    // { maxAttempts, baseDelayMs, exponentialBackoff, jitter }

Retry decisions

isRetryableError returns true for:

  • AbortError
  • ECONNABORTED, ECONNRESET, ETIMEDOUT
  • Errors whose message contains timeout / network / fetch failed
  • HTTP 429 (rate limit)
  • HTTP 5xx

Everything else (including 4xx) is non-retryable and propagated immediately.

Backoff with jitter

Delay = baseDelayMs * 2^(attempt-1) ± up to 20% jitter, so a thundering herd doesn't synchronize.

License

MIT