HTTP client based on Fetch API with built-in support for retries, timeouts, and JSON handling.
npm install @outloud/reqoimport { reqo } from '@outloud/reqo'
const data = await reqo.$get<{ status: boolean }>('https://api.example.com/data', {}, {
retry: { limit: 3 },
timeout: 5000
})
console.log(data) // { status: true }To learn more, check documentation.