├── .editorconfig ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .prettierignore ├── LICENSE ├── README.md ├── package.json ├── pnpm-lock.yaml ├── src ├── client.ts ├── index.ts ├── retry.ts └── types.ts ├── test ├── client.spec.ts └── retry.spec.ts ├── tsconfig.json ├── tsup.config.ts └── vitest.config.mts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divyam234/feaxios/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divyam234/feaxios/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | dist 4 | coverage 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divyam234/feaxios/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divyam234/feaxios/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divyam234/feaxios/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divyam234/feaxios/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divyam234/feaxios/HEAD/src/client.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divyam234/feaxios/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/retry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divyam234/feaxios/HEAD/src/retry.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divyam234/feaxios/HEAD/src/types.ts -------------------------------------------------------------------------------- /test/client.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divyam234/feaxios/HEAD/test/client.spec.ts -------------------------------------------------------------------------------- /test/retry.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divyam234/feaxios/HEAD/test/retry.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divyam234/feaxios/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divyam234/feaxios/HEAD/tsup.config.ts -------------------------------------------------------------------------------- /vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divyam234/feaxios/HEAD/vitest.config.mts --------------------------------------------------------------------------------