Limitless App Development with Expo and React Native

Rate this content
Bookmark

App development is hard, React and Expo make it easy!

It's never been simpler to build and deploy powerful mobile apps with incredible features to both Android and iOS users all over the world.

We’ll discuss building and deploying mobile apps seamlessly from the cloud using EAS, creating powerful dev clients (like browsers but for mobile app development) for testing your app, pushing OTA updates instantly to users, and much more — no native experience required!

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

FAQ

React Native is a framework that allows developers to build cross-platform mobile applications using React and JavaScript. It enables the same codebase to render on both iOS and Android platforms by using native views instead of web views.

The core differences are that React Native uses proper native views instead of drawing views to Skia like in Chrome. This allows for platform optimizations such as smooth scrolling, gestures, and complex animations. React Native also supports the use of multiple threads and custom native clients for extra functionality.

Some challenges include the need to create a native runtime to get started, managing dependencies which are harder than in web development, distributing the app via App Store or Google Play Store which involves complex code signing, and frequent and complex upgrades requiring familiarity with iOS and Android native development.

Expo simplifies React Native development by providing tools such as a reusable pre-built runtime, fast iteration speed, and integrated cloud services. It allows developers to create and run apps without native builds, manage dependencies easily, publish apps with a single command, and add native code or customize the client with minimal complexity.

Expo CLI is a modern Node.js Command Line Interface that helps developers interface with the bundler, start a development server, and perform various development tasks. Developers can install Expo CLI globally and create new projects with commands like 'expo init' and run them on iOS, Android, or web platforms using NPM scripts.

Expo Go allows developers to instantly open their app on iOS and Android without needing to make native builds. It includes most of the APIs needed for complex native apps built ahead of time, reducing the complexity and time required to launch a 'Hello World' app, making it as easy as web development.

Expo uses a tool called Expo Application Services (EAS) for deploying apps. EAS automates native code signing, validation, and submission to the App Store or Google Play Store. Developers can submit their app with a single command, simplifying the traditionally difficult and error-prone process of deploying mobile apps.

Over-the-air updates in Expo allow developers to update JavaScript and assets in their app instantly. By running 'expo publish,' the JS bundle is pushed to a hosting service, which the app's runtime checks for updates. The next time the user opens the app, the updated version is downloaded in the background and presented.

Expo has two main workflows: the Managed Workflow and the Bare Workflow. The Managed Workflow allows developers to avoid working directly with native code and maximizes cross-platform configuration. The Bare Workflow provides full control over every aspect of the project, requiring manual updates for native configurations.

The Expo SDK is a set of npm packages versioned together to ensure compatibility. It includes core primitives and community packages that support iOS, Android, and web platforms. The SDK simplifies dependency management and provides a reliable versioning system to solve common issues encountered in React Native development.

Evan Bacon
Evan Bacon
27 min
22 Oct, 2021

Comments

Sign in or register to post your comment.

Video Summary and Transcription

Today's Talk discussed building cross-platform apps with React Native and Expo, addressing challenges such as setting up the native runtime and managing dependencies. Expo provides a pre-built runtime, native APIs, fast iteration speed, and integrated cloud services. EAS build simplifies app deployment by handling native code signing and validation. Over-the-air updates allow instant updates to JS and assets. Custom native code can be added using auto-linking and config plugins, and Expo supports both Managed and Bare workflows.

1. Introduction to React Native

Short description:

Today we're talking about building cross-platform apps with React and Expo. React Native allows us to write code once and render to multiple platforms. It uses proper native views for improved performance and allows us to reuse code across platforms. However, there are some challenges, such as setting up the native runtime and managing dependencies. The app's runtime must also be distributed to app stores.

What's up, everyone? I'm Evan Bacon, and today we're going to be talking about building cross-platform apps with React and Expo.

Native app development can be a little bit daunting. So I'm going to be discussing and describing in a way which is comparable to web development.

So first we're going to do a quick recap for anyone who's unfamiliar with React Native. When you want to build an iOS app, you'll use Swift and Objective-C, and when you want to build an Android app, you'll use Java and Kotlin. Now, this often means that you'll have two separate teams which are pretty much working in silos. Obviously, that's less efficient than having one team. But using React Native, we can write React and JavaScript that renders to each platform using the same code base. This is very similar to a mobile browser, which lets you run React DOM code on multiple different platforms, which is by design.

React is very intuitive for building and scaling large front-end applications. Now, the core differences between React DOM and React Native are, instead of drawing our views to Skia, like we would in Chrome, React Native uses proper native views. This means that we can use platform optimizations like smooth scrolling, gestures, and complex animations, which is known to be a weak point in mobile browsers. We can create custom native clients that expose extra native functionality to our app. Think of this like building a browser, but with Bluetooth support added to it. And we can reuse the majority of our application code across multiple different platforms. We have the potential to scale our app to support more platforms in the future. And finally, we can utilize multiple different threads. By default, everything runs in a JavaScript thread, minimizing the amount of business logic that runs on the main UI thread. This is a pretty advanced architecture which you just get for free by simply using React Native. So this is pretty awesome.

Now, React Native, of course, is not without its issues, ranging from mildly annoying to highly annoying. So let's talk about some of them. First is that in order to get a Hello World app running, just Hello World, we need to create a native runtime. This differs from web development where the native runtime is already built ahead of time and downloaded on your computer. That would be Chrome or Safari, the web browsers. And they can just load your JavaScript project inside of them. Second is that dependencies in React Native are much harder to manage than in web development. In React Native, you need to install the native code via NPM, whereas in web development, the native code is already built ahead of time into the browser. And the APIs and native code are designed by W3C, so they're very well thought out and just well constructed. Third is that your app's runtime must be distributed to the App Store or Google Play Store, with a few exceptions for testing of course.

2. Introduction to Expo and React Native Development

Short description:

In this part, we'll discuss the challenges of code signing and upgrading React Native applications. We'll also introduce Expo, a set of tools that solve these issues. Expo provides a pre-built runtime, native APIs, fast iteration speed, and integrated cloud services. We'll cover creating an app, the development cycle, publishing to the store, adding native code, and upgrading the app. To get started, install Expo CLI, create a new project, and use NPM scripts to start on iOS, Android, or web. React Native's development cycle is fast and enjoyable, and it uses primitives to render native views for each platform. Community packages provide additional features.

This means that you must perform code signing for your application, which is complicated and prone to errors. Finally, upgrading your React Native application is quite painful. You need some familiarity with both iOS and Android native development in order to do it, and upgrades happen pretty frequently.

Over the course of this presentation, I'm going to show you how we've solved each one of these issues using a series of tools called Expo. Now, Expo provides many tools that web developers have come to expect, like a reusable pre-built runtime, similar to the browser, or a thoughtful set of features and native APIs that you don't need to really interact with too much, very fast iteration speed, and deeply integrated cloud services that make building and deploying very seamless.

First, we'll talk about creating an app and running it on your devices without having to do any native builds. Then we'll cover the development cycle and adding dependencies, then we'll talk about publishing your app to the store so that you can get it into the hands of users. And finally, we'll talk about adding native code, customizing your client, and easily upgrading your app.

To get started with app development, we just need to install Expo CLI. This is a modern Node.js CLI that helps us interface with the bundler, start up a dev server, and many other development tasks. So we're just going to globally install the package, and then create a new project with Expo init. Here, we'll quickly generate a new project. We don't need any native code to get started. When the project is initialized, we can use NPM scripts in order to start up instantly on iOS Android web, which are the platforms that are supported by Expo by default. Yarn Android starts up the Metro bundler and opens up the project on Android. Yarn iOS opens up the simulator, and Web starts up the web pack dev server, and opens your project in the browser.

Now, Expo in React Natives development cycle is pretty top-notch, even just like for web development. So here, I'll open the app on both iOS and Android, instantly. I don't need to do any native builds for that. Then I'll make a few changes to demonstrate fast refresh, which preserves the React's component state between updates. As you can see, the development cycle is pretty fast and really enjoyable. Unlike React DOM development, React Native uses primitives. So instead of div, you'll use something like view. Instead of image, you'll use image. And instead of span, you'll use text. Each one of these elements then draws to the correct native view for each platform. So on iOS, a view would render to a UI view, and on web, a view would render to a div, and so on and so forth. And finally, these primitives render out to something which generally looks the same across all platforms. React Native only provides a handful of core primitives. The majority of complex features come from community packages.

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
Bringing Your Web App to Native With Capacitor
JSNation 2023JSNation 2023
111 min
Bringing Your Web App to Native With Capacitor
WorkshopFree
Mike Hartington
Mike Hartington
So, you have a killer web app you've built and want to take it from your web browser to the App Store. Sure, there are a lot of options here, but most will require you to maintain separate apps for each platform. You want your codebase to be as close as possible across Web, Android, and iOS. Thankfully, with Capacitor, you can take your existing web app and quickly create native iOS and Android apps for distribution on your favorite App Store!
Contents: This workshop is aimed at beginner developers that have an existing web application, or are interested in mobile development. We will go over:- What is Capacitor- How does it compare to other cross-platform solutions- Using Capacitor to build a native application using your existing web code- Tidying up our application for distribution on mobile app stores with naming conventions, icons, splash screens and more