Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/midudev/react-rendering-strategies

Improve your React ⚛️ app performance by using Dynamic Rendering, Progressive Rendering or Static Rendering
https://github.com/midudev/react-rendering-strategies

client-side-rendering dynamic-rendering partyal-hydration react server-side-rendering ssr static-content

Last synced: about 2 months ago
JSON representation

Improve your React ⚛️ app performance by using Dynamic Rendering, Progressive Rendering or Static Rendering

Awesome Lists containing this project

README

        

# ⚛️ React rendering strategies

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

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

## Static Content 📸
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).

## Progressive Hydration 🏁
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.

## Dynamic Rendering 🔀
If your visitor is a bot, like GoogleBot or Yandex, use Server Side Rendering and Client Side Rendering.
If your visitor is a real user, use Client Side Rendering.