An open API service indexing awesome lists of open source software.

https://github.com/hyper63/hyperfetch

hyperFetch is a fetch function with exponential backoff
https://github.com/hyper63/hyperfetch

Last synced: about 1 year ago
JSON representation

hyperFetch is a fetch function with exponential backoff

Awesome Lists containing this project

README

          

# hyperFetch
hyperFetch is a fetch function with exponential backoff

## Usage

```js
import { fetch } from '@hyper63/fetch'

async function main() {
const result = await fetch('https://example.com')
if (result.ok) {
const body = await result.json()
console.log(body)
}
}
```