Popularity
4.7
Declining
Activity
0.0
Stable
620
10
35

Monthly Downloads: 0
Programming language: TypeScript
License: MIT License
Tags: Utilities     React     Reactjs     Hooks    
Latest version: v1.7.4

react-fetching-library alternatives and similar libraries

Based on the "Utilities" category.
Alternatively, view react-fetching-library alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of react-fetching-library or a related project?

Add another 'Utilities' Library

README

Simple and powerful fetching library for React. Use hooks to fetch data!

Watch on GitHubStar on GitHubTweet


Build Status version downloads MIT License PRs Welcome Code of Conduct Code of Conduct codecov

βœ… Zero dependencies (react, react-dom as peer deps)

βœ… SSR support

βœ… Use hooks or FACC's (Function as Child Components) - depending on your needs

βœ… Uses Fetch API (but allows to use custom fetch implemenation and axios as well)

βœ… Request and response interceptors allows to easily customize connection with API

βœ… React Suspense support (experimental *)

βœ… TypeScript support

βœ… Error boundaries to catch bad API responses

βœ… Less than 3k minizipped

βœ… Simple cache provider - easily to extend

βœ… Handle race conditions

βœ… Allows to abort pending requests


react-fetching-library

Use hooks or FACC's (Function as Child Component) to fetch data in an easy way. No dependencies! Just React under the hood.

Request and response interceptors allows you to easily customize connection with API (add authorization, refresh token, cache, etc). It uses Fetch API so it can be used in SSR apps (i.e. with isomorphic-fetch).

Library allows you to use it with connection of React Suspense (read more about React Suspense) to easily maintain loading state in application.

Documentation

Full documentation is available HERE

Short example of use

import { useQuery } from 'react-fetching-library';

const fetchUsersList = {
  method: 'GET',
  endpoint: '/users',
};

export const UsersListContainer = () => {
  const { loading, payload, error, query } = useQuery(fetchUsersList);

  return <UsersList loading={loading} error={error} users={payload} onReload={query} />;
};

Edit Basic Example

Typescript support

Inspirations

Contributing

Feel free to open PRs and issues to make this library better !

When making a PR, make sure all tests pass. If you add a new feature, please consider updating the documentation or codesandbox examples. Thank you!

Using Suspense to fetch data

For now React Suspense is not production ready to use it for fetch data as described here, so API of our component/hook may change in the future.

License

react-fetching-library is licensed under the MIT license.


*Note that all licence references and agreements mentioned in the react-fetching-library README section above are relevant to that project's source code only.