SWR
React Hooks for Data Fetching (by vercel)
react-query
š¤ Powerful asynchronous state management, server-state utilities and data fetching for TS/JS, React, Solid, Svelte and Vue. [Moved to: https://github.com/TanStack/query] (by tannerlinsley)
SWR | react-query | |
---|---|---|
255 | 191 | |
31,350 | 27,869 | |
0.9% | - | |
7.8 | 9.1 | |
6 days ago | almost 3 years ago | |
TypeScript | TypeScript, JS | |
MIT License | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
SWR
Posts with mentions or reviews of SWR.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-12-05.
-
useSWR usage in vercel/ai-chatbot hooks.
Following is overview picked from SWR site.
-
Using React Suspense with Data Fetching and Concurrent Rendering.
If you need more robust featuresālike caching, re-fetching, or paginationācheck out libraries like React Query or SWR. Many of these tools also offer optional Suspense modes, so you can keep your data-fetching code clean while benefiting from powerful caching and refetching mechanisms.
-
Mastering CRUD with NextJS
Client-Side Data Fetching with useQuery can be used for interactive components that need to fetch data on the client-side, with initial state hydrated from server-side fetched data. For fetching data that changes frequently or for adding client-side interactivity it is useful the useSWR strategy. Itās a React hook for client-side data fetching with caching and revalidation. It allows fetching data on the client side, usually after the initial page load. Nevertheless, it does not fetch data at build time or on the server for SSR, but it can revalidate and fetch new data when required.
-
Is React as hard/complex as it sounds?
SWR for lightweight data fetching
- Session State Management | JS | React
-
Essential Frontend Resources for Next.js Development š
ā” SWR Documentation
-
In-Depth Comparison: How to Choose the Most Suitable Enhanced Request Library
swr
-
The Evolution of React State Management: From Local to Async
We can do this with React-Query, SWR, Redux Toolkit Query and many others.
-
Building a subscription tracker Desktop and iOS app with compose multiplatformāProviding feedbacks
This is a common approach in JS land, and there are plenty of libraries that help abstract the logic and make sure the state is consistent, like swr or TanStack Query.
-
The Ultimate React Roadmap for 2024 - Learn React the Right Way
SWR is a React Hook for data fetching that makes it easy to fetch, cache, and revalidate data at the component level.
react-query
Posts with mentions or reviews of react-query.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2025-01-19.
-
š React Patterns: Essential Tips and Tricks for Developers
React Query: https://github.com/tannerlinsley/react-query
-
20 Essential Parts Of Any Large Scale React App
react-query
-
Some Very Cool (Underrated maybe) React Libraries
React Query: This library makes it easy to manage data in your React applications, from fetching to caching and updating data. It offers a simple, powerful, and flexible API for handling data and keeping your UI in sync with your data. https://github.com/tannerlinsley/react-query
-
Do I need a fetching library in React?
useQuery (react-query) (+) all from above (+) even more features (-) more complex, even the examples are complex, has more aggressive defaults (re-fetching every 2s)
-
Is there any redux-saga equivalent for zustand?
see here Overview
-
React Query Codegen from OpenAPI
Rapini is a new tool that can generate custom React Query hooks using OpenAPI (Swagger) files.
-
React hooks for 28 RxJS operators
React Query is the gold standard for using async data declaratively with hooks. I ended up needing to modify even my simple useTimer hook to work more like useQuery to take multiple keys in order to work as an inner observable for other operators.
-
Goodbye, useEffect - Reactathon 2022
For most situations, I would recommend using a library like React Query. It handles a lot of common data-fetching boiler plate and already accounts for this useEffect() issue. Also, it supports Suspense if you want to use that.
-
Managing application cache with react-query, and code generation.
At this point, I want to move on to the react-query cache management library. Give a brief overview and see how you can improve your developer experience with cache using this library.
-
When to use a hook, and when to use a service?
There isn't the "service" concept in React. If you need to send off data you can just do so with fetch. If you need to load data and cache it so it can be used across components and unmounts, then something like react-query is what I'd recommend. But it's basically a combination of React Context, useEffect, and useState to manage the cache and lifecycle of a request.
What are some alternatives?
When comparing SWR and react-query you can also consider the following projects:
axios - Promise based HTTP client for the browser and node.js
urql - The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
zustand - š» Bear necessities for state management in React
wretch - A tiny wrapper built around fetch with an intuitive syntax. :candy:
redux-saga - An alternative side effect model for Redux apps