DEV Community

Cover image for Introducing Expo Support for Nx
Emily Xiong for Nx

Posted on • Updated on • Originally published at blog.nrwl.io

Introducing Expo Support for Nx

We are very excited to announce the support for Expo with our new package @nrwl/expo. In addition to the React Native support, with this release of @nrwl/expo, you will be able to easily develop mobile apps in the monorepo. If you use Expo in a monorepo then Nx is the tool for you.

This blog will show you how to create a one-page app to display a poem:

Page Screenshot (left: Android, right: iOS)

Github Repo: https://github.com/xiongemi/nx-expo-poetry
Github Page: https://xiongemi.github.io/nx-expo-poetry


Before We Start

When I just started to try out Expo, the first questions came to my mind were “what is the difference between Expo and React Native” and “when to choose Expo and when to choose React Native”? In short, Expo is a set of tools built on top of React Native. You can read it more at https://stackoverflow.com/questions/39170622/what-is-the-difference-between-expo-and-react-native.

Now I have created an app with Expo, to me, the most significant differences are developer experience and build process.

Left: managed Expo project folder, right: React Native project folder

For a managed Expo project, notice that it only has a src folder; whereas for a React Native project, besides the src folder, it also contains the android and ios folder. For a managed Expo project, developers do not need to worry about maintaining code for iOS and Android. However, you can still write customized native code for Expo, you can use Expo with bare workflow after running the command expo eject.

Moreover, Expo provides Expo Application Services(EAS) to build and distribute your app. React Native developers can bundle and build locally using Android Studio or Xcode. However, with EAS Build, it will build on a hosted service. Of course, there is potentially a fee involved: https://expo.dev/pricing.

Something to note: @nrwl/expo and @nrwl/react-native cannot exist in the same monorepo due to dependency version conflicts. Expo usually tails the latest React Native by a few versions, whereas @nrwl/react-native tries to align with the latest React Native version.


Setup

First, let’s create an Nx workspace:

npx create-nx-workspace nx-expo-poetry --preset=empty
Enter fullscreen mode Exit fullscreen mode

Then you need to install @nrwl/expo package:

cd nx-expo-poetry

# npm
npm install @nrwl/expo —-save-dev

# yarn
yarn add @nrwl/expo —-dev
Enter fullscreen mode Exit fullscreen mode

Then you need to generate an expo app:

nx generate @nrwl/expo:app poetry-app
Enter fullscreen mode Exit fullscreen mode

Now you should notice that under the apps folder, there are 2 folders generated: peotry-app and poetry-app-e2e:

apps folder

Now run the command to serve up the Expo Development Server:

nx start poetry-app
Enter fullscreen mode Exit fullscreen mode

You should see the starter app in the simulator:

Expo Development Server

Create First Page

Now we got the app running, let’s create our first page. In this example, we are going to use the React Native Paper as the material design library. To install:

# npm
npm install react-native-paper --save

# yarn
yarn add react-native-paper
Enter fullscreen mode Exit fullscreen mode

Then, let’s create our first component. This component simply displays a poem on the page.

First, to add a component file under the app, run the below command:

nx g @nrwl/expo:component poem-of-the-day --directory=components
Enter fullscreen mode Exit fullscreen mode

Now you should see the components under apps/components:

app folder structure

Then paste the below code to the App.tsx and poem-of-the-day.tsx:

Now, if you run command nx start poetry-app and then run the app on the simulator, you should see:

Page Screenshot (left: Android, right: iOS)

To see it in the real device, run nx publish poetry-app.

Awesome! Now you have built your first page. However, notice this page only displays a static poem. The next step is to integrate with the API. In this example. We are going to use PoetryDB: https://github.com/thundercomb/poetrydb.

Create a Workspace Library

To create a library that gets a random poem from the API, run the command:

nx generate @nrwl/expo:library services
Enter fullscreen mode Exit fullscreen mode

This should generate a services folder under libs:

library folder structure

Create a peotry.serivce.ts file to call the PoetryDB API and get a random poem:

For the service we created above, we can import it in the app directly like:

import { PoemResponse, poetryService } from '@nx-expo-poetry/services';
Enter fullscreen mode Exit fullscreen mode

Then the apps/poetry-app/src/components/poem-of-the-day/poem-of-the-day.tsx would become:

If you now run the app using nx start poetry-app, you should see the poem loaded from API:

Page Screenshot (left: Android, right: iOS)


Using Expo Build

Now you want to build and possibly publish your app. To build the standalone app, you can use the Expo build. First, you need to create an Expo account. You can do it at https://expo.dev/signup or using the command line:

npx expo login
Enter fullscreen mode Exit fullscreen mode

Then you can run the build command:

# iOS
nx build-ios poetry-app

# Android
nx build-android poetry-app
Enter fullscreen mode Exit fullscreen mode

You can monitor your builds after logging in at https://expo.dev/:

Builds page at https://expo.dev/

You can read more at https://docs.expo.dev/classic/building-standalone-apps/ to debug.

Using EAS Build

Before you start to use EAS build, you need to install EAS CLI:

npm install -g eas-cli
Enter fullscreen mode Exit fullscreen mode

Then, you can sign up and log in to your Expo:

npx expo login
Enter fullscreen mode Exit fullscreen mode

Then go to the app folder using cd apps/poetry-app and simply run:

eas build
Enter fullscreen mode Exit fullscreen mode

You can monitor your builds after logging in at https://expo.dev/:

Builds page at https://expo.dev/

To submit to the app store, run:

eas submit
Enter fullscreen mode Exit fullscreen mode

Conclusion

In this article, we have:

  • successfully built an expo app using Nx
  • add UI in the app
  • create a separate library to handle services
  • use EAS to build the app With Nx, we can create as many libraries as we want to handle different concerns. It would be very handy to share and reuse libraries or have multiple apps in the same monorepo.

I hope you found this useful, and we look forward to hearing your feedback.

If you’re new to Nx and want to learn more, visit nx.dev.
(Note, the repository with the code for this article is linked at the very top.)

This app is also available in the app store, just search “Poem of the Day”:
Android: https://play.google.com/store/apps/details?id=com.exiong.poetryapp
iOS:
Screenshot in iOS app store

Latest comments (1)

Collapse
 
pestodrizzle profile image
Dan

Hey Emily, what's the latest with Nx users and Expo? I've recently started helping Expo with their marketing and I'm looking for stories to tell.