Skip to content

Commit 819ea83

Browse files
authored
Update README.md
1 parent cb25029 commit 819ea83

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
11
# ⚛︎ React rendering strategies
22

3-
Slides: https://slides.com/miguelangeldurangarcia/react-rendering-strategies#/
3+
Different strategies to render React applications in order to get the best performance while keeping SEO, Developer Experience and User Experience.
4+
5+
[Slides](https://slides.com/miguelangeldurangarcia/react-rendering-strategies#)
6+
7+
## Dynamic Rendering
8+
If your visitor is a bot, like GoogleBot or Yandex, use Server Side Rendering and Client Side Rendering.
9+
If your visitor is a real user, use Client Side Rendering.
10+
11+
## Static Content
12+
Server Side Rendering for a component and skip the hydration step on the client. Useful for components that don't need to use interactivity (like SEO links).
13+
14+
## Progressive Rendering
15+
Server Side Rendering for a component and skip the hydration step on the client but, as soon as it appears on the viewport, then hydrate it. Useful for list of items.

0 commit comments

Comments
 (0)