Ejemplo
Copiar
import { run } from "trybox";
const r = await run(() => fetch("/api/items").then((x) => x.json()), {
retries: 3,
retryDelay: (attempt) => attempt * 200,
timeout: 2000,
});
if (r.ok) {
console.log(r.data);
} else {
console.error(r.error.code);
}