Skip to content

Commit 4659724

Browse files
committed
Merge branch 'master' of github.com:midudev/react-rendering-strategies
2 parents af5106d + 21bcaa1 commit 4659724

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# React rendering strategies
1+
# React rendering strategies
22

33
Different strategies to render React applications in order to get the best performance while keeping SEO, Developer Experience and User Experience.
44

55
[Slides](https://slides.com/miguelangeldurangarcia/react-rendering-strategies#)
66
[Video](https://www.youtube.com/watch?v=v7ql02xHRtg&feature=youtu.be)
77

8-
## Dynamic Rendering
8+
## Dynamic Rendering 🔀
99
If your visitor is a bot, like GoogleBot or Yandex, use Server Side Rendering and Client Side Rendering.
1010
If your visitor is a real user, use Client Side Rendering.
1111

12-
## Static Content
12+
## Static Content 📸
1313
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).
1414

15-
## Progressive Rendering
16-
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.
15+
## Progressive Hydration 🏁
16+
Server Side Rendering for a component and skip the hydration step on the client but, as soon as it appears on the viewport, hydrate it. Useful for list of items or components that are not visible on the viewport but yet you need to render them for SEO.

0 commit comments

Comments
 (0)