#reactQuery
Server state caching libraries removed manual fetching boilerplate. Loading flags, refetch on focus, stale while revalidate, and deduplication come standard. Components declare what data they need, the library handles delivery. Data fetching became declarative. #ReactQuery #WebDev #Frontend
August 20, 2026 at 12:59 PM
Anyone hiring a remote senior software engineer (8 years experience, based in US)? My partner is currently working at a dumpster fire of a company so I thought I'd see if the fediverse has any recommendations. He's fastidious about testing and maintainability […]

[Original post on mastodon.social]
January 13, 2026 at 7:19 PM
Published a new blog on React Query with Next.js Server Components.

It’s an implementation-focused walkthrough on server-side pre-fetching, hydration, and reusing data on the client without duplicate API calls.

Link👇
pranavpatani.hashnode.dev/react-query-...

#NextJS #ReactQuery #WebDev #Frontend
December 16, 2025 at 5:36 AM
Discover how #NextJS, #ReactQuery, and the BFF pattern combine for efficient, scalable data fetching. Faris Aziz shares real-world examples in this practical talk.

Talk by Faris Aziz

Watch here: youtu.be/Kne5dgx4v4Q

#cityjs #javascrity #react #nextjs #backend #webdev
- YouTube
Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.
youtu.be
November 5, 2025 at 8:50 AM
Just wrote a brief article on the Result Pattern and how it transformed my codebase. After implementing the Result Pattern in my TS/React projects, I've seen significant improvements in code reliability and maintainability. valerionarcisi.me/blog/result-...

#TypeScript #ReactQuery #ErrorHandling
Result Pattern with React Query Integration Guide | Valerio Narcisi | Web Developer & Director
The Result Pattern is a functional programming approach to error handling that makes success and error states explicit in your type system. Instead of throwi...
valerionarcisi.me
September 5, 2025 at 10:50 AM
Step 2/3:
Integrate React Query to streamline data fetching with caching and sync.

#ReactQuery
June 16, 2025 at 11:06 AM
Master React Query with Next.js Server Components!

🚀 Simplify data fetching with seamless integration.
Try it now: npmix.com/blog/how-to-...

#NextJS #ReactQuery #WebDev #React
How to Use React Query with Next.js Server Components - Demo
Learn how to combine React Query with Next.js server components to improve performance, reduce network requests, and simplify your data-fetching strategy.
npmix.com
June 16, 2025 at 11:06 AM
Simplify state management in React with Zustand + React Query!

Lightweight, fast, and no boilerplate. Manage client & server state like a pro.

Read the guide: www.npmix.com/blog/zustand...

What’s your state management stack?

#ReactJS #WebDev #Zustand #ReactQuery
June 13, 2025 at 9:55 AM
I have to say I love react query!
RefetchType:active allows you to refetch invalidated queries when that query is mounted anywhere in the UI.
It helped me solve a nasty bug in my work project.

#reactquery #tanstackquery
May 14, 2025 at 7:39 AM
Check out the article to see how this approach can level up your frontend architecture.

hasseebmayo.com/blogs/smarter-…#TypeScriptp#ReactJSJ#WebDevelopmentn#FrontendDevelopmentn#ReactQueryr#reactct
https://hasseebmayo.com/blogs/smarter-…
May 12, 2025 at 9:26 PM
🚀 React Query vs Fetch/Axios

Stop writing:
🔁 Repetitive fetch code
😵‍💫 Manual loading/error handling
🧊 No caching

Start using:
⚡ Built-in caching
♻️ Background refetch
📊 Devtools

📦 TanStack Query = Smart data fetching in React

#ReactJS #TanStackQuery #ReactQuery
April 25, 2025 at 2:08 AM
If ReactQuery re-renders infinitely, it might help to pull out the arguments to useQuery into a separate function outside the component using queryOptions to make them referentially stable.

At least fixed the re-renders in my case 🤓

#ReactJS #ReactQuery
April 8, 2025 at 8:00 PM
107 #100daysofcode
🍃 Spent most of my day messing w/ reactQuery only to accept that it won't work for this😔 I'll have to use SWRinfinite
🟢 it doesn't concat the new fetch into the cache, instead the cache is made up of subarrays of each fetch
🟢tried useQuery and infiniteQuery
April 5, 2025 at 5:47 AM
The pitfalls of ReactQuery:

`npm i react-query`

...but wtf do I know.
March 21, 2025 at 3:11 PM
React Paris Speaker Spotlight: Say hello to (Dominik Dorfmeister) @tkdodo.eu Engineer at @sentry.io and a maintainer of #ReactQuery. His talk: “React Query API Design - Lessons Learned.” #ReactParis #ReactQuery #paris #conference
February 24, 2025 at 2:29 PM
🎙️ In case you missed @tkdodo.eu's talk “React Query - The Bad Parts” at @reactdayberlin.gitnation.org, he recently uploaded the slides and transcript of his talk.

Definitely worth a read!👇

🔗 tkdodo.eu/blog/react-q...

#ReactQuery #TanstackQuery #react
February 18, 2025 at 8:54 AM
o combo trpc e reactquery foi uma das coisas mais lindas q eu vi nos últimos tempos 🥹🥹
February 6, 2025 at 12:18 PM
Started out with useEffect’s in all the client components to fetch and save data because I didn’t know of a better approach.

Then I learned about React Query. So now, I’m rewriting all the relevant useEffect’s into React Query hooks to query and mutate data.
#dev #ReactQuery
Rewriting bad code is time-consuming.

You clean up messy logic, refactor a function… and then something else breaks.

I’m in the process of rewriting a lot of components in a personal project using NextJS. #dev #NextJS
January 31, 2025 at 4:27 PM
If you've dipped your toes into React but haven't looked into React Query, take this as your sign! It's a great tool for managing server-state in React apps. See ya later, manual data fetching, caching, and updating headaches! Learn more: tinyurl.com/298rhdxh

#ReactQuery #ReactJS #DevTools
Become expert in React Query
Take your React Query knowledge to the next level.
tigerabrodi.blog
January 26, 2025 at 5:48 PM
Thanks for sharing! Have you considered using ReactQuery for this? With persistQueryClient, you can even persist the cache. Here’s a link for more details: tanstack.com/query/latest...
persistQueryClient | TanStack Query React Docs
This is set of utilities for interacting with "persisters" which save your queryClient for later use. Different persisters can be used to store your client and cache to many different storage layers.....
tanstack.com
January 24, 2025 at 4:17 PM
I don’t remember how many times I read this article of @tkdodo.eu

tkdodo.eu/blog/practic...

No matter how many times I use ReactQuery, my brain always got confused between “staleTime” and “gcTime” (aka. “cacheTime”), so I have to come back and read it again 😂
Practical React Query
Let me share with you the experiences I have made lately with React Query. Fetching data in React has never been this delightful...
tkdodo.eu
December 19, 2024 at 1:27 PM
As for RSC (and Next.js) it is still not ideal because client components force you to reach for client-side data fetching solutions. The missing piece for React is server functions for data fetching i.e. native ReactQuery but with automatic fn generation (RPC) instead an API bsky.app/profile/gspp...
December 15, 2024 at 4:06 PM