Server-Driven Mobile Apps With React Native

Rate this content
Bookmark
The video discusses server-driven UI and its application within React Native to create scalable and complex UIs. It highlights how Facebook's Project Lightspeed aimed to reduce code duplication and bundle size by using server-driven UI. The layout is controlled by the server through a JSON blob, which is dynamically rendered by the client-side code. Companies like Shopify, Airbnb, and Lyft use server-driven UI to achieve platform consistency and dynamic layout control. The talk also touches on how server-driven UI can benefit e-commerce platforms, like React Cloth, by defining the layout through an API or CMS. Challenges include managing caching, offline support, and the complexity of dynamic layouts. The video references Evan Bacon's talk at ReactConf, which introduces the concept of Universal React Server Components. This approach allows for dynamic UI updates without significant client-side code changes, making it a valuable tool for developers attending events like React Summit.

From Author:

How do you create a scalable application with lots of different layouts, screens, giving enough flexibility to each team to customise without adding orders of magnitude in complexity to your app? Companies like Airbnb, Meta, and Lyft approach this with server-driven UI. We’ll explore how this can work for mobile apps, challenges that it introduces, and how it’s the way forward in the age of React Server Components. 

This talk has been presented at React Summit 2024, check out the latest edition of this React Conference.

FAQ

Server-driven UI is a design pattern where the server controls the UI layout by sending a JSON blob that defines the layout of the page. This allows for more scalable and complex UIs without significant code duplication.

Server-driven UI helps in creating scalable and complex UIs in React Native applications by reducing code duplication and simplifying layout definitions. It allows for dynamic UI updates without requiring significant changes to the client-side code.

Project Lightspeed was an initiative by Facebook to reduce the complexity and size of the Messenger app. By adopting server-driven UI, they were able to cut down from 1.7 million lines of code to 360,000 and reduce the bundle size from 130 megabytes to 30 megabytes.

Companies like Shopify, Airbnb, and Lyft are using server-driven UI. Shopify uses it for their shop app, Airbnb for platform consistency across web and mobile, and Lyft for dynamically controlling layouts for different user requirements.

Server-driven UI helped Facebook Messenger reduce code duplication and simplify layout management. This led to a significant reduction in codebase size and bundle size, improving app performance and maintainability.

In an e-commerce platform like React Cloth, server-driven UI defines the layout using a JSON blob from an API or CMS. This JSON includes various sections like offers, recommended products, and testimonials, which are then dynamically rendered by the client-side code.

The advantages of using server-driven UI include reduced code duplication, simplified layout management, dynamic UI updates, and improved performance. It also allows for more flexible and scalable UI designs.

Airbnb adopted server-driven UI to achieve platform consistency across web, iOS, and Android. It helped them unify components across different parts of their platform and add new features without significant rework.

Some challenges associated with server-driven UI include handling caching and offline support, managing the complexity of dynamic layouts, and ensuring seamless integration between server-side and client-side components.

You can learn more about server-driven UI in React Native by watching talks and presentations from experts. A highly recommended talk is by Evan Bacon from the Expo team, discussing React Server Components within the Expo Router.

Mo Khazali
Mo Khazali
8 min
18 Jun, 2024

Comments

Sign in or register to post your comment.

Video Transcription

1. Introduction to Server-driven UI

Short description:

Today, we are going to be taking a look at server-driven UI and how you can use it within your React Native applications to create more scalable and complex UIs and layouts without incurring a lot of cost and tech debt. The best way to talk about server-driven UI is to go through a very concrete story from the industry. Let's go back in our timelines, back from 2024 all the way to 2019. For the folks at Facebook before they were called meta, they were just releasing out a lot of new features into the messenger app. This app was expanding very quickly, resulting in slow app start-up times and multiple versions of the same UI components.

Hey, everyone. Thank you for joining the session. Today, we are going to be taking a look at server-driven UI, how you can use it within your React Native applications to create more scalable and complex UIs and layouts without incurring a lot of cost and a lot of tech debt.

My name is Mo. I head the mobile team at Theodo. Theodo has been doing React Native since 2015, I believe. We were very early adopters as soon as React Native came out a few months after we started doing React Native. We've been hosting things like the React Native London meetup since 2017. We're very passionate about React Native. We've been in the space for a while, and we've seen a whole host of projects in the React Native space from small to large. Hopefully we can share some of that experience with you all.

The best way to talk about server-driven UI is to go through a very concrete story from the industry. Let's go back in our timelines, back from 2024 all the way to 2019. This was a simpler time. It was the age before the pandemic. Life was simple. For the folks at Facebook before they were called meta, they were just releasing out a lot of new features into the messenger app. If you remember, the logo was blue. It didn't have the gradient. They had just introduced a large group chats. They had added in new functionality and features such as polling. They even added things like maps and games into their app. This app was expanding very, very quickly. As a result, they had over 1.7 million lines of code in the iOS app for Messenger. They had a massive bundle size. We're talking 130 megabytes. All of this resulted in slow app start-up times and also slow run time of the app. There were multiple versions of the same UI components. One thing that they gave an example of was that there were 40 different contactless screens, which is really just the exact same component with slight variations. They had duplicated similar layouts across the app with very minor variations.

2. Project Lightspeed

Short description:

Project Lightspeed was born as a simpler way to define layouts and UI without hard coding and duplication. The server controls the UI, resulting in a massive reduction in lines of code and bundle size. It also improved team efficiency and introduced a new logo.

Project Lightspeed was born. The whole concept behind Project Lightspeed was that they needed a simpler way to define layouts, to define the UI, that didn't require so much hard coding of different variations, so much code duplication. The strategy that they landed on was this concept of server-driven UI, with a fair bit of more complexity added in for things like caching, offline support. Really the gist of it was that the server controls the UI. If we look at the results, if we go out to 2020, what happened was those 1.7 million lines of code, they were reduced down to 360,000 lines of code. That is a massive reduction. The 130 megabytes of bundle size was reduced down to 30 megabytes of bundle size. They had an entirely new logo, right? Everyone is happy. Really, the gist of it was they were able to cut down so much, speed up their team significantly, all through adopting a different architecture and a different pattern to think about it.

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

Raising the Bar: Our Journey Making React Native a Preferred Choice
React Advanced Conference 2023React Advanced Conference 2023
29 min
Raising the Bar: Our Journey Making React Native a Preferred Choice
Watch video: Raising the Bar: Our Journey Making React Native a Preferred Choice
This Talk discusses Rack Native at Microsoft and the efforts to improve code integration, developer experience, and leadership goals. The goal is to extend Rack Native to any app, utilize web code, and increase developer velocity. Implementing web APIs for React Native is being explored, as well as collaboration with Meta. The ultimate aim is to make web code into universal code and enable developers to write code once and have it work on all platforms.
Opensource Documentation—Tales from React and React Native
React Finland 2021React Finland 2021
27 min
Opensource Documentation—Tales from React and React Native
Documentation is often your community's first point of contact with your project and their daily companion at work. So why is documentation the last thing that gets done, and how can we do it better? This talk shares how important documentation is for React and React Native and how you can invest in or contribute to making your favourite project's docs to build a thriving community
Bringing React Server Components to React Native
React Day Berlin 2023React Day Berlin 2023
29 min
Bringing React Server Components to React Native
Top Content
Watch video: Bringing React Server Components to React Native
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.
React Native Kotlin Multiplatform Toolkit
React Day Berlin 2022React Day Berlin 2022
26 min
React Native Kotlin Multiplatform Toolkit
Top Content
The Talk discusses the combination of React Native and Kotlin Multiplatform for cross-platform app development. Challenges with native modules in React Native are addressed, and the potential improvements of using Kotlin Multiplatform Mobile are explored. The integration of Kotlin Multiplatform with React Native streamlines native implementation and eliminates boilerplate code. Questions about architecture and compatibility, as well as the possibility of supporting React Native Web, are discussed. The React Native toolkit works with native animations and has potential for open-source development.
Building Cross-Platform Component Libraries for Web and Native with React
React Advanced Conference 2021React Advanced Conference 2021
21 min
Building Cross-Platform Component Libraries for Web and Native with React
Top Content
This Talk discusses building cross-platform component libraries for React and React Native, based on a successful project with a large government-owned news organization. It covers the requirements for React Native knowledge, building cross-platform components, platform-specific components, styling, and the tools used. The Talk also highlights the challenges of implementing responsive design in React Native.
MDX in React-Native!?
React Advanced Conference 2021React Advanced Conference 2021
21 min
MDX in React-Native!?
Top Content
This Talk is about the development of MDX, a combination of Markdown and JSX, by a freelance full stack JavaScript developer. MDX is a powerful technology that allows for the creation of interactive content within blog posts and supports React components. The speaker developed RnMDX, a proper and polished MDX library for React Native, which can be dropped into any React Native app. RnMDX provides solutions for common issues with Markdown content in React Native and allows for the rendering of MDX content into native views. Bringing MDX into native apps is now easier, and it can be used for various purposes, such as serving the app layout from a CMS or creating interactive online magazines or blogs.

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
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
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
Deploying React Native Apps in the Cloud
React Summit 2023React Summit 2023
88 min
Deploying React Native Apps in the Cloud
WorkshopFree
Cecelia Martinez
Cecelia Martinez
Deploying React Native apps manually on a local machine can be complex. The differences between Android and iOS require developers to use specific tools and processes for each platform, including hardware requirements for iOS. Manual deployments also make it difficult to manage signing credentials, environment configurations, track releases, and to collaborate as a team.
Appflow is the cloud mobile DevOps platform built by Ionic. Using a service like Appflow to build React Native apps not only provides access to powerful computing resources, it can simplify the deployment process by providing a centralized environment for managing and distributing your app to multiple platforms. This can save time and resources, enable collaboration, as well as improve the overall reliability and scalability of an app.
In this workshop, you’ll deploy a React Native application for delivery to Android and iOS test devices using Appflow. You’ll also learn the steps for publishing to Google Play and Apple App Stores. No previous experience with deploying native applications is required, and you’ll come away with a deeper understanding of the mobile deployment process and best practices for how to use a cloud mobile DevOps platform to ship quickly at scale.
Effective Detox Testing
React Advanced Conference 2023React Advanced Conference 2023
159 min
Effective Detox Testing
Workshop
Josh Justice
Josh Justice
So you’ve gotten Detox set up to test your React Native application. Good work! But you aren’t done yet: there are still a lot of questions you need to answer. How many tests do you write? When and where do you run them? How do you ensure there is test data available? What do you do about parts of your app that use mobile APIs that are difficult to automate? You could sink a lot of effort into these things—is the payoff worth it?
In this three-hour workshop we’ll address these questions by discussing how to integrate Detox into your development workflow. You’ll walk away with the skills and information you need to make Detox testing a natural and productive part of day-to-day development.
Table of contents:
- Deciding what to test with Detox vs React Native Testing Library vs manual testing- Setting up a fake API layer for testing- Getting Detox running on CI on GitHub Actions for free- Deciding how much of your app to test with Detox: a sliding scale- Fitting Detox into you local development workflow
Prerequisites
- Familiarity with building applications with React Native- Basic experience with Detox- Machine setup: a working React Native CLI development environment including either Xcode or Android Studio
Introduction to React Native Testing Library
React Advanced Conference 2022React Advanced Conference 2022
131 min
Introduction to React Native Testing Library
Workshop
Josh Justice
Josh Justice
Are you satisfied with your test suites? If you said no, you’re not alone—most developers aren’t. And testing in React Native is harder than on most platforms. How can you write JavaScript tests when the JS and native code are so intertwined? And what in the world are you supposed to do about that persistent act() warning? Faced with these challenges, some teams are never able to make any progress testing their React Native app, and others end up with tests that don’t seem to help and only take extra time to maintain.
But it doesn’t have to be this way. React Native Testing Library (RNTL) is a great library for component testing, and with the right mental model you can use it to implement tests that are low-cost and high-value. In this three-hour workshop you’ll learn the tools, techniques, and principles you need to implement tests that will help you ship your React Native app with confidence. You’ll walk away with a clear vision for the goal of your component tests and with techniques that will help you address any obstacle that gets in the way of that goal.you will know:- The different kinds React Native tests, and where component tests fit in- A mental model for thinking about the inputs and outputs of the components you test- Options for selecting text, image, and native code elements to verify and interact with them- The value of mocks and why they shouldn’t be avoided- The challenges with asynchrony in RNTL tests and how to handle them- Options for handling native functions and components in your JavaScript tests
Prerequisites:- Familiarity with building applications with React Native- Basic experience writing automated tests with Jest or another unit testing framework- You do not need any experience with React Native Testing Library- Machine setup: Node 16.x or 18.x, Yarn, be able to successfully create and run a new Expo app following the instructions on https://docs.expo.dev/get-started/create-a-new-app/