https://github.com/icyjoseph/concurrent-mode-experiments
Concurrent Mode / Suspense Data Fetching study material
https://github.com/icyjoseph/concurrent-mode-experiments
concurrent react react-concurrent react-suspense suspense
Last synced: 3 months ago
JSON representation
Concurrent Mode / Suspense Data Fetching study material
- Host: GitHub
- URL: https://github.com/icyjoseph/concurrent-mode-experiments
- Owner: icyJoseph
- Created: 2019-10-29T06:09:00.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-04T22:51:47.000Z (almost 5 years ago)
- Last Synced: 2025-01-21T19:41:38.531Z (5 months ago)
- Topics: concurrent, react, react-concurrent, react-suspense, suspense
- Language: JavaScript
- Homepage:
- Size: 771 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React Experimental Concurrent and Suspense Data Fetch
Implements all cases covered in the [experimental page](https://reactjs.org/docs/concurrent-mode-suspense.html).
## Branches
Data fetching strategies:
- fetch-on-render
- fetch-then-render
- render-as-you-fetchRace Conditions:
- race-conditions-with-useEffect
- race-conditions-withComponentDidUpdate
- solving-race-conditions-with-suspenseError Boundary:
- handling-errors