Chapter 14 · 9 examples
Data fetching on the client and performance
Types of data fetching · Do I really need an external library to fetch data in React? · What is a "performant" React app? · React lifecycle and data fetching · Browser limitations and data fetching · Requests waterfalls: how they appear · How to solve requests waterfall · What about Suspense?
- Example 1Load everything at once
- Example 2Sidebar first
- Example 3Issue first, piece by piece
- Example 4Six requests block the app
- Example 5Classic request waterfall
- Example 6Promise.all at the root
- Example 7Parallel promises resolved independently
- Example 8Data providers with Context
- Example 9Fetching before React