├── .circleci └── config.yml ├── .eslintignore ├── .eslintrc ├── .flowconfig ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── docs ├── .nojekyll ├── Fetch.md ├── FetchProvider.md ├── README.md ├── _sidebar.md ├── images │ ├── error.png │ ├── favicon.png │ └── logo.png ├── index.html └── requestToApi.md ├── modules ├── Fetch.js ├── FetchManager.js ├── FetchProvider.js ├── __tests__ │ ├── Fetch.spec.js │ ├── FetchManager.spec.js │ ├── FetchProvider.spec.js │ ├── __snapshots__ │ │ ├── Fetch.spec.js.snap │ │ └── FetchProvider.spec.js.snap │ └── requestToApi.spec.js ├── index.js ├── requestToApi.js └── types.js ├── package.json ├── scripts ├── build.js └── config.js └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/README.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/docs/Fetch.md -------------------------------------------------------------------------------- /docs/FetchProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/docs/FetchProvider.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/docs/_sidebar.md -------------------------------------------------------------------------------- /docs/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/docs/images/error.png -------------------------------------------------------------------------------- /docs/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/docs/images/favicon.png -------------------------------------------------------------------------------- /docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/docs/images/logo.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/requestToApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/docs/requestToApi.md -------------------------------------------------------------------------------- /modules/Fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/modules/Fetch.js -------------------------------------------------------------------------------- /modules/FetchManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/modules/FetchManager.js -------------------------------------------------------------------------------- /modules/FetchProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/modules/FetchProvider.js -------------------------------------------------------------------------------- /modules/__tests__/Fetch.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/modules/__tests__/Fetch.spec.js -------------------------------------------------------------------------------- /modules/__tests__/FetchManager.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/modules/__tests__/FetchManager.spec.js -------------------------------------------------------------------------------- /modules/__tests__/FetchProvider.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/modules/__tests__/FetchProvider.spec.js -------------------------------------------------------------------------------- /modules/__tests__/__snapshots__/Fetch.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/modules/__tests__/__snapshots__/Fetch.spec.js.snap -------------------------------------------------------------------------------- /modules/__tests__/__snapshots__/FetchProvider.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/modules/__tests__/__snapshots__/FetchProvider.spec.js.snap -------------------------------------------------------------------------------- /modules/__tests__/requestToApi.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/modules/__tests__/requestToApi.spec.js -------------------------------------------------------------------------------- /modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/modules/index.js -------------------------------------------------------------------------------- /modules/requestToApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/modules/requestToApi.js -------------------------------------------------------------------------------- /modules/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/modules/types.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/scripts/config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesMangwa/react-data-fetching/HEAD/yarn.lock --------------------------------------------------------------------------------