You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updated several mentions of "React Query" to "TanStack Query".
Wrote "formerly known as" instead of using a not all that well known abbreviation to better support the multilingual audience.
Copy file name to clipboardExpand all lines: docs/framework/react/overview.md
+7-7
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ id: overview
3
3
title: Overview
4
4
---
5
5
6
-
TanStack Query (FKA React Query) is often described as the missing data-fetching library for web applications, but in more technical terms, it makes **fetching, caching, synchronizing and updating server state** in your web applications a breeze.
6
+
TanStack Query (formerly known as React Query) is often described as the missing data-fetching library for web applications, but in more technical terms, it makes **fetching, caching, synchronizing and updating server state** in your web applications a breeze.
7
7
8
8
## Motivation
9
9
@@ -29,11 +29,11 @@ Once you grasp the nature of server state in your application, **even more chall
29
29
30
30
If you're not overwhelmed by that list, then that must mean that you've probably solved all of your server state problems already and deserve an award. However, if you are like a vast majority of people, you either have yet to tackle all or most of these challenges and we're only scratching the surface!
31
31
32
-
React Query is hands down one of the _best_ libraries for managing server state. It works amazingly well **out-of-the-box, with zero-config, and can be customized** to your liking as your application grows.
32
+
TanStack Query is hands down one of the _best_ libraries for managing server state. It works amazingly well **out-of-the-box, with zero-config, and can be customized** to your liking as your application grows.
33
33
34
-
React Query allows you to defeat and overcome the tricky challenges and hurdles of _server state_ and control your app data before it starts to control you.
34
+
TanStack Query allows you to defeat and overcome the tricky challenges and hurdles of _server state_ and control your app data before it starts to control you.
35
35
36
-
On a more technical note, React Query will likely:
36
+
On a more technical note, TanStack Query will likely:
37
37
38
38
- Help you remove **many** lines of complicated and misunderstood code from your application and replace with just a handful of lines of React Query logic.
39
39
- Make your application more maintainable and easier to build new features without worrying about wiring up new server state data sources
@@ -44,7 +44,7 @@ On a more technical note, React Query will likely:
44
44
45
45
## Enough talk, show me some code already!
46
46
47
-
In the example below, you can see React Query in its most basic and simple form being used to fetch the GitHub stats for the React Query GitHub project itself:
47
+
In the example below, you can see TanStack Query in its most basic and simple form being used to fetch the GitHub stats for the TanStack Query GitHub project itself:
48
48
49
49
[Open in StackBlitz](https://stackblitz.com/github/TanStack/query/tree/main/examples/react/simple)
50
50
@@ -95,7 +95,7 @@ function Example() {
95
95
96
96
## You talked me into it, so what now?
97
97
98
-
- Consider taking the official [React Query Course](https://query.gg?s=tanstack) (or buying it for your whole team!)
99
-
- Learn React Query at your own pace with our amazingly thorough [Walkthrough Guide](./installation.md) and [API Reference](./reference/useQuery.md)
98
+
- Consider taking the official [TanStack Query Course](https://query.gg?s=tanstack) (or buying it for your whole team!)
99
+
- Learn TanStack Query at your own pace with our amazingly thorough [Walkthrough Guide](./installation.md) and [API Reference](./reference/useQuery.md)
0 commit comments