Bringing React Server Components to React Native

Spanish audio is available in the player settings
Rate this content
Bookmark

React Server Components are new topic in community, bunch of frameworks are implementing them, people are discussing around this topic. But what if we could use React Server Components in React Native? And bring all optimisation features that RSC allows to mobile apps? In this talk I would present what we are able to do with RSC in React Native!

This talk has been presented at React Day Berlin 2023, check out the latest edition of this React Conference.

Watch video on a separate page

FAQ

React Server Components (RSC) are a framework for rendering React components on a server instead of the client. This approach streams only the necessary components to the client, reducing the initial bundle size and the amount of data transferred over the network.

By executing on the server, React Server Components reduce the initial load time of an app by minimizing the size of the bundle that needs to be downloaded. This is particularly beneficial for improving the performance of mobile apps by reducing unnecessary data transfer.

Yes, React Server Components can potentially be integrated into React Native. Although primarily used in web contexts, their integration into mobile can help manage component updates and reduce data usage by only streaming necessary components.

Challenges include managing different versions of the app and server components, handling app updates without full store reviews, and ensuring that native user experience remains consistent. Technical hurdles also involve configuring server-side operations within a mobile context.

The future involves experimental and perhaps production implementations of React Server Components in mobile applications. This development could lead to faster updates, smaller application sizes, and more dynamic content delivery.

OTA updates allow developers to push updates to mobile apps without requiring a store review. React Server Components could enhance this by allowing individual components to be updated independently, rather than updating the entire application bundle.

Caching is crucial for React Server Components on mobile to ensure that components are available offline and to reduce data usage. Effective caching strategies can help maintain a native app feel by storing essential components locally.

While specific details were not disclosed, there is ongoing work and potential collaboration with Meta to align React Server Components implementation in React Native with broader industry practices.

The main benefits include reduced data transfer by only sending necessary component data, potential for quicker component updates, and the ability to maintain a native user experience while leveraging server-side rendering advantages.

Szymon Rybczak
Szymon Rybczak
29 min
08 Dec, 2023

Comments

Sign in or register to post your comment.

Video Summary and Transcription

React Server Components (RSC) offer a more accessible approach within the React model, addressing challenges like big initial bundle size and unnecessary data over the network. RSC can benefit React Native development by adding a new server layer and enabling faster requests. They also allow for faster publishing of changes in mobile apps and can be integrated into federated super apps. However, implementing RSC in mobile apps requires careful consideration of offline-first apps, caching, and Apple's review process.

1. Introduction to React Server Components

Short description:

Hello everyone, hello Berlin. I'm really excited to present React server components and discuss their relevance in React Native development. Let's explore the challenges of networking in app development and how React Server Components can address them. Dona Bramov introduced this idea, aiming to solve problems like big initial bundle size and sending unnecessary data over the network. With the production-ready implementation of Next.js and solutions like Relay and GraphQL, React Server Components offer a more accessible approach within the React model.

Hello everyone, hello Berlin. It's really nice to be here today. I'm really excited and also a little bit stressed because it's my first talk before the big stage. But today I've got a really interesting topic to present, React server components. But I would like to expand this topic to React Native part. And does it make sense to have RST on mobile? And what possibly should we do to upstream them to the production apps?

But first, a few words about me. My name is Szumon Rybczak and I'm 17 years old, React native developer at Callstack. On a daily basis, I work in a technology team where I support our R&D and open source initiatives. I'm also maintaining React Native Community CLI and I'm the youngest ever React Native contributor. You can find me on Twitter or on GitHub under Szumon Rybczak handle. I'm trying to post there very often stuff that you are cooking at Callstack.

So in software development, there is this principle that you can make something that is good, something that is fast, and something that is cheap. But you can only pick two. So you can make something that is good, something that is fast, but not relatively cheap to make. Or either you can make something that is cheap, something that is fast, but not really good. Or lastly, you can make something that is good, something that is cheap to make, but not fast. That's how Dona Bramov started a talk presenting an idea of React Server Components. Data fetching with React Server Components is a new idea in the ecosystem. And maybe React Server Components will solve our problems that we are encouraging when developing apps. And we have a bunch of problems, but the two ones that come with networking is big initial bundle size and sending unnecessary data over the network.

This video was published already three years ago, so a lot of things changed in the meantime. Dona and Laura were presenting the idea. Right now, we have production-ready implementation, for example, with Next.js. At Meta, they solved the problem of sending unnecessary data with Relay and GraphQL. Relay is a tool for receiving the GraphQL data for React. But, you know, it's not an easy task to implement GraphQL in a huge backend code basis. And with that, the entry barrier is really high. But the core team wanted a solution that would be easy enough to implement and would just work within the React model. So, how does React Server Components work? So right now, when developing React app, when the user hits the domain, the bundle is downloaded and executed on the client. The bundle is evaluated and that's where the magic happens.

2. React Server Components and React Native

Short description:

With React Server Components (RSC), we add a new server layer and stream only the necessary parts to the client. This format, specific to RSC, allows access to server resources and enables faster requests. React Native can also benefit from RSC, as they were initially developed for server-driven technologies on Native. The logic for RSC is contained in the React Client and React Server packages, with custom logic implemented through config files. While mobile apps may not prioritize bundle size, RSC can still be valuable, especially for online and offline-first apps.

But with RSC model, we are adding a new layer. We are adding a new server layer. So, this is the most important moment. We are executing React Components on the server. And then, we are streaming by chunks to the client. And by streaming, we are only streaming parts that will be displayed. So, we are not streaming unnecessary data, unnecessary props, or parts of the components.

Thanks to this, that we are executing on the server, we can access files on the server, we can access database, or we can make some smart move with cache to speed up our request. And it's all thanks to this format that is, as I said, streamed from a server. It looks like a JSON, but it's not. It's React Server Components specific format that is consumed on the client side. It contains things that should be displayed reference to the components, et cetera.

So, how does React Native fit to this whole image? And how even we can implement a server part inside React Native? So, everyone is talking about React Server Components in context of web, because that's where we have production ready implementation. But actually, in fact, server components were initially founded at Meta because of the promise they were showing when using server driven technologies on Native. And that's a nice plot twist. A lot of people think about RSC only in web context, but maybe they make some sense on mobile. But what architecture and what cost would it take to implement it?

So, React is on the repo, and two packages that are most important for us today are React Client and React Server. They contain logic for React Server Components, but only unified logic. So, the same logic will be applied for any bundler and any renderer. The custom logic is implemented through the config files. So, as we can see here, for example, for TurboPack, we have one config file, and for Webpack, we have another. And that's where we can possibly add a config file for React Native renderer and for Metro, which is a default bundler for React Native.

The main argument for React Server Components, as I mentioned, is reducing initial bundle size. So, the first chunk of the application will be shown really, really fast. But in mobile, we don't care that much about bundle size. We are downloading up once from the app store, and then app just exists there. Every time user visits the app, bundle is just there. And thanks to Hermes, the JavaScript engine designed for React Native purposes, the startup time for the application is pretty much the same for the application that has bundled 10 megabytes or 100. There are various apps, but I strongly believe that there's a space for RST on mobile. There are online first app and there are offline first app.

QnA

Check out more articles and videos

We constantly think of articles and videos that might spark Git people interest / skill us up or help building a stellar career

Simplifying Server Components
React Advanced Conference 2023React Advanced Conference 2023
27 min
Simplifying Server Components
Top Content
Watch video: Simplifying Server Components
React server components simplify server-side rendering and provide a mental model of components as pure functions. Using React as a library for server components allows for building a basic RSC server and connecting it to an SSR server. RSC responses are serialized virtual DOM that offload code from the client and handle interactivity. The client manifest maps serialized placeholders to real components on the client, enabling dynamic rendering. Server components combine the best of classic web development and progressive enhancement, offering the advantage of moving logic from the client to the server.
Exploring React Server Component Fundamentals
React Day Berlin 2023React Day Berlin 2023
21 min
Exploring React Server Component Fundamentals
Top Content
Watch video: Exploring React Server Component Fundamentals
This Talk introduces React Server Components (RSC) and explores their serialization process. It compares RSC to traditional server-side rendering (SSR) and explains how RSC handles promises and integrates client components. The Talk also discusses the RSC manifest and deserialization process. The speaker then introduces the Waku framework, which supports bundling, server, routing, and SSR. The future plans for Waku include integration with client state management libraries.
And Now You Understand React Server Components
React Summit 2024React Summit 2024
27 min
And Now You Understand React Server Components
Top Content
In this Talk, Kent C. Dodds introduces React Server Components (RSCs) and demonstrates how to build them from scratch. He explains the process of integrating RSCs with the UI, switching to RSC and streaming for improved performance, and the benefits of using RSCs with async components. Dodds also discusses enhancements with streaming and server context, client support and loaders, server component rendering and module resolution, handling UI updates and rendering, handling back buttons and caching, and concludes with further resources for diving deeper into the topic.
A Practical Guide for Migrating to Server Components
React Advanced Conference 2023React Advanced Conference 2023
28 min
A Practical Guide for Migrating to Server Components
Top Content
Watch video: A Practical Guide for Migrating to Server Components
React query version five is live and we'll be discussing the migration process to server components using Next.js and React Query. The process involves planning, preparing, and setting up server components, migrating pages, adding layouts, and moving components to the server. We'll also explore the benefits of server components such as reducing JavaScript shipping, enabling powerful caching, and leveraging the features of the app router. Additionally, we'll cover topics like handling authentication, rendering in server components, and the impact on server load and costs.
Server Components: The Epic Tale of Rendering UX
React Summit 2023React Summit 2023
26 min
Server Components: The Epic Tale of Rendering UX
Top Content
Watch video: Server Components: The Epic Tale of Rendering UX
This Talk introduces server components in React, which provide an intermediate format for rendering and offer advantages for both client-side and server-side rendering. Server components reduce bundle size on the client and improve search engine optimization. They abstract the rendering process, allowing for faster rendering and flexibility in choosing where to render components. While server components are still in the experimental stage, Next.js is a good starting point to try them out.
Batteries Included Reimagined - The Revival of GraphQL Yoga
GraphQL Galaxy 2021GraphQL Galaxy 2021
33 min
Batteries Included Reimagined - The Revival of GraphQL Yoga
Envelope is a powerful GraphQL plugin system that simplifies server development and allows for powerful plugin integration. It provides conformity for large corporations with multiple GraphQL servers and can be used with various frameworks. Envelope acts as the Babel of GraphQL, allowing the use of non-spec features. The Guild offers GraphQL Hive, a service similar to Apollo Studio, and encourages collaboration with other frameworks and languages.

Workshops on related topic

Introducing FlashList: Let's build a performant React Native list all together
React Advanced Conference 2022React Advanced Conference 2022
81 min
Introducing FlashList: Let's build a performant React Native list all together
Top Content
WorkshopFree
David Cortés Fulla
Marek Fořt
Talha Naqvi
3 authors
In this workshop you’ll learn why we created FlashList at Shopify and how you can use it in your code today. We will show you how to take a list that is not performant in FlatList and make it performant using FlashList with minimum effort. We will use tools like Flipper, our own benchmarking code, and teach you how the FlashList API can cover more complex use cases and still keep a top-notch performance.You will know:- Quick presentation about what FlashList, why we built, etc.- Migrating from FlatList to FlashList- Teaching how to write a performant list- Utilizing the tools provided by FlashList library (mainly the useBenchmark hook)- Using the Flipper plugins (flame graph, our lists profiler, UI & JS FPS profiler, etc.)- Optimizing performance of FlashList by using more advanced props like `getType`- 5-6 sample tasks where we’ll uncover and fix issues together- Q&A with Shopify team
Next.js 13: Data Fetching Strategies
React Day Berlin 2022React Day Berlin 2022
53 min
Next.js 13: Data Fetching Strategies
Top Content
WorkshopFree
Alice De Mauro
Alice De Mauro
- Introduction- Prerequisites for the workshop- Fetching strategies: fundamentals- Fetching strategies – hands-on: fetch API, cache (static VS dynamic), revalidate, suspense (parallel data fetching)- Test your build and serve it on Vercel- Future: Server components VS Client components- Workshop easter egg (unrelated to the topic, calling out accessibility)- Wrapping up
Detox 101: How to write stable end-to-end tests for your React Native application
React Summit 2022React Summit 2022
117 min
Detox 101: How to write stable end-to-end tests for your React Native application
Top Content
WorkshopFree
Yevheniia Hlovatska
Yevheniia Hlovatska
Compared to unit testing, end-to-end testing aims to interact with your application just like a real user. And as we all know it can be pretty challenging. Especially when we talk about Mobile applications.
Tests rely on many conditions and are considered to be slow and flaky. On the other hand - end-to-end tests can give the greatest confidence that your app is working. And if done right - can become an amazing tool for boosting developer velocity.
Detox is a gray-box end-to-end testing framework for mobile apps. Developed by Wix to solve the problem of slowness and flakiness and used by React Native itself as its E2E testing tool.
Join me on this workshop to learn how to make your mobile end-to-end tests with Detox rock.
Prerequisites- iOS/Android: MacOS Catalina or newer- Android only: Linux- Install before the workshop
The Gateway to Backend: A Frontend Developer's Guide to Full-Stack Development
React Summit US 2023React Summit US 2023
160 min
The Gateway to Backend: A Frontend Developer's Guide to Full-Stack Development
Top Content
WorkshopFree
Amy Dutton
Amy Dutton
This workshop will guide you through the product development life cycle of creating a real-world web application. You will learn about React Server Components, building a design system within Storybook, and using frontend development to approach becoming a full-stack developer. The workshop will cover increasing confidence in your application with unit tests and implementing authentication and authorization. You'll have the opportunity to work through product features and examine a real-world RedwoodJS project, gaining valuable experience in real-world product development. RedwoodJS makes it simple to approach full-stack development, and this workshop will give you the skills you need to create your own real-world web applications.
How to Build an Interactive “Wheel of Fortune” Animation with React Native
React Summit Remote Edition 2021React Summit Remote Edition 2021
60 min
How to Build an Interactive “Wheel of Fortune” Animation with React Native
Top Content
Workshop
Oli Bates
Oli Bates
- Intro - Cleo & our mission- What we want to build, how it fits into our product & purpose, run through designs- Getting started with environment set up & “hello world”- Intro to React Native Animation- Step 1: Spinning the wheel on a button press- Step 2: Dragging the wheel to give it velocity- Step 3: Adding friction to the wheel to slow it down- Step 4 (stretch): Adding haptics for an immersive feel
Advanced Application Deployment Patterns with React Server Components (feat. a DIY RSC Framework)
React Summit US 2023React Summit US 2023
104 min
Advanced Application Deployment Patterns with React Server Components (feat. a DIY RSC Framework)
Top Content
WorkshopFree
 Greg Brimble
Greg Brimble
The developer ecosystem is always moving fast and this year has proved no exception. React Server Components can offer a significant improvement to developer experience and to application performance. But I think it's fair to say that this new server-first paradigm can be tricky to wrap your head around!In the first half of this workshop, we'll explore React Server Components from the ground-up: building our own mini meta-framework to help us understand how RSCs work. We'll discover exactly what is produced by an RSC build and we'll connect those pieces together to form a full application.Next, we'll deploy it! Cloudflare have also had a busy year too — Smart Placement, in particular, is a new technology that we've developed which fits the RSC model perfectly. We'll explore why that makes sense for our workshop app, and we'll actually deploy it onto the Cloudflare Developer Platform.Finally, we'll build out our app a little further, using D1 (our serverless SQL database) to really show off the React Server Component's power when combined with Smart Placement.You should come away from this workshop with a greater understanding of how React Server Components work (both behind-the-scenes and also how you as a developer can use them day-to-day), as well as insight into some of the new deployment patterns that are now possible after recent innovations in the platform space.