🪟 Windows TippsThe Gemini desktop app is now available for Windows(11.09.2026 um 17:06 Uhr)
🔧 AI Nachrichten ChatGPT automatically logged out [Fix](12.09.2026 um 17:09 Uhr)
⚠️ Malware / Trojaner / VirenWindows 11 just dropped the tool ransomware abused, Microsoft says don’t restore WMIC(10.09.2026 um 20:11 Uhr)
🪟 Windows TippsServertimeout in Outlook über 10 Minuten verlängern(12.09.2026 um 15:10 Uhr)
🕵️ SicherheitslückenCVE-2026-84651 | Jenkins Project up to 2.567.x REST API permission(13.09.2026 um 04:28 Uhr)
🕵️ SicherheitslückenCVE-2026-84652 | Jenkins Project up to 2.567.x session fixiation(13.09.2026 um 04:28 Uhr)
🪟 Windows TippsThe Gemini desktop app is now available for Windows(11.09.2026 um 17:06 Uhr)
🔧 AI Nachrichten ChatGPT automatically logged out [Fix](12.09.2026 um 17:09 Uhr)
⚠️ Malware / Trojaner / VirenWindows 11 just dropped the tool ransomware abused, Microsoft says don’t restore WMIC(10.09.2026 um 20:11 Uhr)
🪟 Windows TippsServertimeout in Outlook über 10 Minuten verlängern(12.09.2026 um 15:10 Uhr)
🕵️ SicherheitslückenCVE-2026-84651 | Jenkins Project up to 2.567.x REST API permission(13.09.2026 um 04:28 Uhr)
🕵️ SicherheitslückenCVE-2026-84652 | Jenkins Project up to 2.567.x session fixiation(13.09.2026 um 04:28 Uhr)

🔧 Programmierung 🕛 vor 3 Monaten 5 Min Lesezeit
0

Two tiny functions that make your async code production-ready: `retry` and `timeout`

↗ Quelle (dev.to)
🗣️ Stimme:
📑 Inhaltsübersicht

Every async function you write assumes the network cooperates, the server responds, and the database doesn't hiccup. In production, none of those assumptions hold forever.



Here are two higher-order functions — each under 15 lines — that make any async function resilient without touching its internals.









The problem



You have an async function. Maybe it calls an API, queries a database, or reads a file over the network.




CODE
async function fetchUserData(userId) {
const response = await fetch(`/api/users/${userId}`);
return response.json();
}






Two things will go wrong eventually:




  1. It will fail intermittently and you'll want to retry it

  2. It will hang indefinitely and you'll want to give up after a deadline



You could wrap every function in retry logic and timeout logic inline. Or you could write it once, properly, and wrap any function you want.









retry — automatic reattempts on failure






CODE
export function retry(count, callback) {
return async function (...args) {
let attempts = 0;
let lastError;

while (attempts <= count) {
try {
return await callback(...args);
} catch (err) {
lastError = err;
attempts++;
}
}

throw lastError;
};
}









How it works



retry is a higher-order function — it takes a function and returns a new function with retry behaviour baked in. The original function is untouched.



The while (attempts <= count) condition is deliberate. If count is 3, the loop runs when attempts is 0, 1, 2, 3 — that's 4 total executions: one initial attempt plus three retries. This matches the natural language meaning of "retry 3 times".



On success, return await callback(...args) exits immediately — no more iterations. On failure, the error is stored in lastError and attempts increments. Once the loop exhausts all attempts, the last error is rethrown — not a generic new Error('Max retries reached'), but the actual error the callback produced. Your callers get a meaningful error message, not a wrapper.






Usage






CODE
const resilientFetch = retry(3, fetchUserData);

// Works exactly like fetchUserData, but retries up to 3 times on failure
const user = await resilientFetch('user_123');









Why await inside try matters






CODE
try {
return await callback(...args); // ✓ catches rejected promises
} catch (err) { ... }






Without await, a rejected promise escapes the try/catch entirely:




CODE
try {
return callback(...args); // ✗ returns a pending promise — catch never fires
} catch (err) { ... }






await unwraps the promise inside the try block, so rejections are catchable. This is one of the most common async/await mistakes and retry only works correctly because it gets this right.









timeout — give up after a deadline






CODE
export function timeout(delay, callback) {
return async function (...args) {
const timer = new Promise((_, reject) =>
setTimeout(() => reject(new Error('timeout')), delay)
);

return Promise.race([callback(...args), timer]);
};
}









How it works



Promise.race resolves or rejects with whichever promise settles first. This function creates a race between two competitors:





  • callback(...args) — the actual work


  • timer — a promise that rejects after delay milliseconds



If the callback finishes in time, its value wins and timer becomes irrelevant. If delay milliseconds pass first, timer rejects with Error('timeout') and the callback's eventual result is ignored.



Notice the timer promise is constructed with (_, reject) — it never resolves, only rejects. This ensures the timer can never accidentally win the race with a successful value; it can only interrupt with a failure.






Usage






CODE
const limitedFetch = timeout(5000, fetchUserData);

try {
const user = await limitedFetch('user_123');
} catch (e) {
if (e.message === 'timeout') {
console.error('Request took too long');
}
}












Combining them



Both functions return async functions with the same signature as their input — which means they compose cleanly.




CODE
// Retry up to 3 times, but abandon any single attempt after 5 seconds
const resilientFetch = retry(3, timeout(5000, fetchUserData));

await resilientFetch('user_123');






Here's what happens on each attempt:





  1. timeout(5000, fetchUserData) races the fetch against a 5-second timer

  2. If it times out, timeout rejects with Error('timeout')


  3. retry catches that rejection, increments attempts, and tries again

  4. After 3 retries all fail, retry rethrows the last error



Four attempts, each with a 5-second ceiling, maximum 20 seconds total. All from two composable functions and one line of setup.









What makes these worth keeping



They don't modify the original function. fetchUserData is unchanged. You can use it with or without retry/timeout anywhere else.



They forward arguments transparently. ...args passes everything through — the wrapped function behaves identically to the original from the caller's perspective.



They preserve the error. retry rethrows lastError, not a new generic error. timeout rejects with a named Error('timeout') you can check by message. Callers always know what actually went wrong.



They compose. Because both return async functions with matching signatures, you can layer them in any order and they work together without knowing about each other.









The pattern



Both functions follow the same structure:




CODE
higherOrderFn(config, callback) {
return async function (...args) {
// enhanced behaviour around callback(...args)
}
}






This is the decorator pattern applied to async functions. You write the enhancement once, and apply it to any async function that needs it — no inheritance, no classes, no modification of the original. Just functions wrapping functions.



It's a small pattern. It shows up everywhere once you start looking for it.

Vollständiger Original-Bericht
Ausführliche Details, Code-Beispiele & Hersteller-Stellungnahme auf dev.to.
↗ Original-Artikel auf dev.to lesen
Wie bewertest du diesen Beitrag?
1 Klick Feedback
Teilen mit Netzwerk & Team:

Community-Analysen & Experten-Meinungen 0

Verfasse deine eigene Analyse, teile Workarounds oder diskutiere diesen Vorfall im Blog.
Noch keine Community-Analyse verfasst. Markiere einen Textabschnitt oder klicke oben auf Eigene Analyse verfassen“!
Community Pulse: Relevanz-Einschätzung
1 Klick Experten-Votum
🔴 Akute Relevanz 0%
🟡 In Evaluierung 0%
🟢 Keine Auswirkung 0%
Spannende Innovation 0%
Verwandte Story-Cluster & Quellen (Vektor-KI)
Port 8095 Engine
1 Quelle
The Gemini desktop app is now available for Windows
1 Quelle
ChatGPT automatically logged out [Fix]
1 Quelle
Windows 11 just dropped the tool ransomware abused, Microsoft says don’t restore WMIC
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Two tiny functions that make your async code production-ready: `retry` and `timeout`

Thematisch verwandte Begriffe: tiny, functions, that, make · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...