An open API service indexing awesome lists of open source software.

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

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-fetch

Race Conditions:

- race-conditions-with-useEffect
- race-conditions-withComponentDidUpdate
- solving-race-conditions-with-suspense

Error Boundary:

- handling-errors