State Management with React Query Improve Developer and User Experience by Mastering Server State in React

Book Cover
Average Rating
Published
Birmingham : Packt Publishing, Limited, 2023.
Status
Available Online

Description

Loading Description...

More Details

Format
Edition
1st edition.
Language
English
ISBN
9781803244839, 1803244836

Notes

General Note
Description based upon print version of record.
General Note
Chapter 8: Testing React Query Hooks and Components
Description
Beat common challenges in data fetching and data mutations while learning one of the most popular libraries for managing server state in React Purchase of the print or Kindle book includes a free PDF eBook Key Features Learn how state is split into server and client state and the common challenges with each Understand how React Query addresses server state challenges by facilitating data fetching and mutations Apply the knowledge gained to improve developer experience and build applications with improved UX Book Description State management, a crucial aspect of the React ecosystem, has gained significant attention in recent times. While React offers various libraries and tools to handle state, each with different approaches and perspectives, one thing is clear: state management solutions for handling client state are not optimized for dealing with server state. React Query was created to address this issue of managing your server state, and this guide will equip you with the knowledge and skills needed to effectively use React Query for state management. Starting with a brief history of state management in the React ecosystem, you'll find out what prompted the split from a global state to client and server state and thus understand the need for React Query. As you progress through the chapters, you'll see how React Query enables you to perform server state tasks such as fetching, caching, updating, and synchronizing your data with the server. But that's not all; once you've mastered React Query, you'll be able to apply this knowledge to handle server state with server-side rendering frameworks as well. You'll also work with patterns to test your code by leveraging the testing library and Mock Service Worker. By the end of this book, you'll have gained a new perspective of state and be able to leverage React Query to overcome the obstacles associated with server state. What you will learn Get to grips with state and how it's typically managed Install and configure React Query and its Devtools Manage server state data fetching with the useQuery hook Create, update, and delete data using the useMutation hook Employ React Query in combination with frameworks such as Next.js and Remix Explore MSW and the testing library to test React Query using components and hooks Who this book is for The book is for React developers who want to improve their state management skills and overcome the hurdles brought about by server state while improving their developer and user experience. Basic knowledge of web development and React will assist with understanding key concepts covered in this book. JavaScript developers will also find it useful.
Local note
O'Reilly,O'Reilly Online Learning: Academic/Public Library Edition

Discover More

Also in this Series

Checking series information...

More Like This

Loading more titles like this title...

Reviews from GoodReads

Loading GoodReads Reviews.

Citations

APA Citation, 7th Edition (style guide)

Afonso, D., & Mestre, R. (2023). State Management with React Query: Improve Developer and User Experience by Mastering Server State in React (1st edition.). Packt Publishing, Limited.

Chicago / Turabian - Author Date Citation, 17th Edition (style guide)

Afonso, Daniel and Ricardo, Mestre. 2023. State Management With React Query: Improve Developer and User Experience By Mastering Server State in React. Birmingham: Packt Publishing, Limited.

Chicago / Turabian - Humanities (Notes and Bibliography) Citation, 17th Edition (style guide)

Afonso, Daniel and Ricardo, Mestre. State Management With React Query: Improve Developer and User Experience By Mastering Server State in React Birmingham: Packt Publishing, Limited, 2023.

Harvard Citation (style guide)

Afonso, D. and Mestre, R. (2023). State management with react query: improve developer and user experience by mastering server state in react. 1st edn. Birmingham: Packt Publishing, Limited.

MLA Citation, 9th Edition (style guide)

Afonso, Daniel,, and Ricardo Mestre. State Management With React Query: Improve Developer and User Experience By Mastering Server State in React 1st edition., Packt Publishing, Limited, 2023.

Note! Citations contain only title, author, edition, publisher, and year published. Citations should be used as a guideline and should be double checked for accuracy. Citation formats are based on standards as of August 2021.

Staff View

Grouped Work ID
6911539c-5152-c472-4727-909dbd43bc9c-eng
Go To Grouped Work View in Staff Client

Grouping Information

Grouped Work ID6911539c-5152-c472-4727-909dbd43bc9c-eng
Full titlestate management with react query improve developer and user experience by mastering server state in react
Authorafonso daniel
Grouping Categorybook
Last Update2025-01-24 12:33:29PM
Last Indexed2025-01-30 03:14:49AM

Book Cover Information

Image Sourcedefault
First LoadedJan 2, 2025
Last UsedFeb 1, 2025

Marc Record

First DetectedDec 16, 2024 11:24:50 PM
Last File Modification TimeDec 17, 2024 08:24:20 AM
SuppressedRecord had no items

MARC Record

LEADER07373cam a22004817a 4500
001on1376933300
003OCoLC
00520241217082254.0
006m     o  d        
007cr cnu||||||||
008230422s2023    enk     o     000 0 eng d
019 |a 1377246623
020 |a 9781803244839
020 |a 1803244836
035 |a (OCoLC)1376933300|z (OCoLC)1377246623
037 |a 9781803231341|b O'Reilly Media
037 |a 10251245|b IEEE
040 |a EBLCP|b eng|c EBLCP|d YDX|d ORMDA|d OCLCF|d IEEEE|d OCLCO
049 |a MAIN
050 4|a QA76.9.C55
08204|a 004/.36|2 23/eng/20230524
1001 |a Afonso, Daniel,|e author.
24510|a State Management with React Query|h [electronic resource] :|b Improve Developer and User Experience by Mastering Server State in React /|c Daniel Afonso ; foreword by Ricardo Mestre.
250 |a 1st edition.
260 |a Birmingham :|b Packt Publishing, Limited,|c 2023.
300 |a 1 online resource (228 p.)
500 |a Description based upon print version of record.
500 |a Chapter 8: Testing React Query Hooks and Components
5050 |a Cover -- Title Page -- Copyright -- Dedication -- Contributors -- Table of Contents -- Preface -- Part 1: Understanding State and Getting to Know React Query -- Chapter 1: What Is State and How Do We Manage It? -- Technical requirements -- What is state in React? -- Managing state in React -- Managing state with useState -- Managing state with useReducer -- Sharing state with React Context -- What do different state management libraries have in common? -- Summary -- Chapter 2: Server State versus Client State -- Technical requirements -- What is global state? -- What is client state?
5058 |a What is server state? -- Understanding common challenges with server state -- Caching -- Optimistic updates -- Deduping requests -- Performance optimization -- Summary -- Chapter 3: React Query -- Introducing, Installing, and Configuring It -- Technical requirements -- What is React Query? -- Query -- Mutation -- How does React Query solve my server state challenges? -- Installing React Query -- npm -- Yarn -- pnpm -- Script tag -- Configuring React Query -- QueryClient -- QueryClientProvider -- Adding React Query Devtools -- Floating Mode -- Embedded Mode
5058 |a Enabling Devtools in your production build -- Summary -- Part 2: Managing Server State with React Query -- Chapter 4: Fetching Data with React Query -- Technical requirements -- What is useQuery and how does it work? -- What is a query key? -- What is a query function? -- What does useQuery return? -- Commonly used options explained -- Refetching data with useQuery -- Automatic refetching -- Manual refetching -- Fetching dependent queries with useQuery -- Putting it all into practice -- Summary -- Chapter 5: More Data-Fetching Challenges -- Technical requirements -- Building parallel queries
5058 |a Manual parallel queries -- Dynamic parallel queries -- Leveraging QueryClient -- Query invalidation -- Prefetching -- Query cancelation -- Creating paginated queries -- Creating infinite queries -- Debugging your queries with Devtools -- Summary -- Chapter 6: Performing Data Mutations with React Query -- Technical requirements -- What is useMutation and how does it work? -- What is the mutation function? -- What does useMutation return? -- Commonly used mutation options explained -- Performing side-effect patterns after mutations -- How to perform an additional side effect
5058 |a How to retrigger a query refetch after mutation -- How to perform an update to our query data after a mutation -- Performing optimistic updates -- Summary -- Chapter 7: Server-Side Rendering with Next.js or Remix -- Technical requirements -- Why should I use React Query with server-side rendering frameworks? -- Using the initialData pattern -- Applying the initialData pattern in Next.js -- Applying the initialData pattern in Remix -- Using the hydrate pattern -- Applying the hydrate pattern in Next.js -- Applying the hydrate pattern in Remix -- Summary
520 |a Beat common challenges in data fetching and data mutations while learning one of the most popular libraries for managing server state in React Purchase of the print or Kindle book includes a free PDF eBook Key Features Learn how state is split into server and client state and the common challenges with each Understand how React Query addresses server state challenges by facilitating data fetching and mutations Apply the knowledge gained to improve developer experience and build applications with improved UX Book Description State management, a crucial aspect of the React ecosystem, has gained significant attention in recent times. While React offers various libraries and tools to handle state, each with different approaches and perspectives, one thing is clear: state management solutions for handling client state are not optimized for dealing with server state. React Query was created to address this issue of managing your server state, and this guide will equip you with the knowledge and skills needed to effectively use React Query for state management. Starting with a brief history of state management in the React ecosystem, you'll find out what prompted the split from a global state to client and server state and thus understand the need for React Query. As you progress through the chapters, you'll see how React Query enables you to perform server state tasks such as fetching, caching, updating, and synchronizing your data with the server. But that's not all; once you've mastered React Query, you'll be able to apply this knowledge to handle server state with server-side rendering frameworks as well. You'll also work with patterns to test your code by leveraging the testing library and Mock Service Worker. By the end of this book, you'll have gained a new perspective of state and be able to leverage React Query to overcome the obstacles associated with server state. What you will learn Get to grips with state and how it's typically managed Install and configure React Query and its Devtools Manage server state data fetching with the useQuery hook Create, update, and delete data using the useMutation hook Employ React Query in combination with frameworks such as Next.js and Remix Explore MSW and the testing library to test React Query using components and hooks Who this book is for The book is for React developers who want to improve their state management skills and overcome the hurdles brought about by server state while improving their developer and user experience. Basic knowledge of web development and React will assist with understanding key concepts covered in this book. JavaScript developers will also find it useful.
590 |a O'Reilly|b O'Reilly Online Learning: Academic/Public Library Edition
650 0|a Client/server computing|x Management.
7001 |a Mestre, Ricardo,|e writer of foreword.
77608|i Print version:|a Afonso, Daniel|t State Management with React Query|d Birmingham : Packt Publishing, Limited,c2023
85640|u https://library.access.arlingtonva.us/login?url=https://learning.oreilly.com/library/view/~/9781803231341/?ar|x O'Reilly|z eBook
938 |a ProQuest Ebook Central|b EBLB|n EBL30495272
938 |a YBP Library Services|b YANK|n 19885139
994 |a 92|b VIA
999 |c 359156|d 359156