HOME
|
COMMUNITY
|
BLOG
|
Setting up React Native Monorepo With Yarn Workspaces

Setting up React Native Monorepo With Yarn Workspaces

In short

Setting up a React Native monorepo provides a centralized repository for diverse projects, allowing shared code and assets between React and React Native. By utilizing Yarn workspaces, you can streamline dependency management, enhance collaboration, and efficiently share packages while avoiding unnecessary duplications. The article guides you through the setup process, emphasizing considerations like Yarn workspace options, project structure, iOS and Android configurations, and shared package implementation, making monorepos a powerful choice for managing complex applications.

What is a monorepo?

A monorepo is a single repository that holds a multitude of projects with all their code and assets. While the projects can be related, they can be used independently by different teams. 

Working with monorepos is very useful, especially when developing big and complex applications like super apps. Monorepos enable sharing the logic between a web app and a mobile app, for example.

In this article, we’re going to set up a basic structure for a monorepo in React Native.

Why use monorepo in React Native?

Thanks to react-native-web we can share every component so there’s no need to duplicate the code many times. This means easier dependency management, shorter CI times, and better collaboration between teams since the code can be shared.

The main advantage though is the possibility of sharing packages between React and React Native. Most of the time we decide to share only business logic, but thanks to React Native Web, we can also share some of the UI components.

Setting up Yarn workspaces

While setting up a monorepo, we have two options: we can either hoist the packages to the root level or prevent them from hoisting. Yarn workspaces have an option named nohoist which allows us to specify packages that aren’t hoisted. It depends on your use case but most of the time it’s better to hoist packages to the root level.

Alternatively, you can use npm workspaces, it should work the same.

Why it’s better to avoid using nohoist

Preventing packages from hoisting takes back the main advantage of monorepos which is sharing <rte-code>node_modules<rte-code> between repositories. When nohoist option is turned on, most of the time packages are duplicated inside the root level <rte-code>node_modules<rte-code> and inside the project level <rte-code>node_modules<rte-code>. Downloading packages multiple times can lead to longer CI/CD runs and higher costs.

Rearranging the project structure

In order to set up yarn workspaces, we need to restructure our project to suit the structure below. Projects need to be divided into separate folders and we should have root level <rte-code>package.json<rte-code>.

Next, you should create a package.json file in the root directory of our project with this command: <rte-code>$ yarn init -y<rte-code> 

It should look like this:

Note that private: true is required because workspaces are not meant to be published.

In the workspaces section, we define a work tree. We can pass there an array of glob patterns that should be used to locate the workspaces. So in the example above, every folder inside packages is defined as a workspace.

Creating a React Native project

Use command below to create a React Native project inside the <rte-code>packages<rte-code> folder:

In order for our app to work in a monorepo structure, we need to make sure that config files are pointing to the root level <rte-code>node_modules<rte-code> due to package hoisting.

iOS setup

  1. Change paths at the top of your Podfile
  1. Regenerate Pods, by entering the command below in the packages/mobile folder:
  1. Next open Xcode and inside Project settings > Build Phases open “Bundle React Native code and images”

Change the path of the script:

It should look like this:

XCode Build phases settings

Android setup

React Native ≥ 0.71

Uncomment the line with <rte-code>reactNativeDir<rte-code> and point it to root <rte-code>node_modules<rte-code>

In top-level <rte-code>build.gradle<rte-code> add this:

and inside: <rte-code>packages/mobile/android/settings.gradle<rte-code>


React Native ≤ 0.71

  1. Fix paths inside <rte-code>packages/mobile/android/build.gradle<rte-code>

Change url of the React Native Android binaries, and Android JSC in the <rte-code>allprojects<rte-code> section:

  1. Fix <rte-code>packages/mobile/android/settings.gradle<rte-code>

Here we also need to change paths to the root <rte-code>node_modules<rte-code> folder.

  1. Next go to <rte-code>packages/mobile/android/app/build.gradle<rte-code>

Inside the <rte-code>project.ext.react<rte-code> we need to add property <rte-code>cliPath<rte-code> so it will override the default location of the cli.

In the same file, change this line: <rte-code>apply from: "../../node_modules/react-native/react.gradle"<rte-code> to point to root level <rte-code>node_modules<rte-code> as well.

And also change: inside <rte-code>packages/mobile/android/app/build.gradle<rte-code>

If you are using or planning to use the new architecture, we also need to change a few lines in the <rte-code>isNewArchitectureEnabled()<rte-code> if statement**.**

Configure Metro

We’re almost done with setting up the project. The last thing in the React Native app is to add <rte-code>watchFolders<rte-code> so metro knows where the linked <rte-code>node_modules<rte-code> are. The shared modules are symlinked by Yarn, and Metro started supporting symlinks from version 0.75.1, effectively being shipped with React Native 0.72. If you want to turn on symlinks right now, you can pass the experimental flag to your metro config:

Regardless of whether you are using symlinks, metro still requires us to list symlinked modules in the config, but this might change in the future. You can follow the discussion on GitHub.

Setting up a shared package

To keep it simple, we’re going to share only one function across React Native and React.

Inside the <rte-code>packages/shared<rte-code>, create a new <rte-code>package.json<rte-code> file with the command:

The shared library is in typescript, so we need to set up a build step with the typescript compiler (tsc).

The build step uses <rte-code>rimraf<rte-code> which is a small utility for node that allows us to remove a folder, and then build the app with tsc.

<rte-code>postinstall<rte-code> indicates that our shared dependency will build automatically after installing.

Note: The package name is really important, because it will indicate from where we will import our module.

It’s also important to add all packages and keep the exact same version used in a shared project and target projects.

Next we need to configure <rte-code>tsconfig.json<rte-code> where we can define our build settings.

Here is an example config file:

Next, let’s create an <rte-code>index.ts<rte-code> file inside the <rte-code>packages/shared<rte-code> folder.

Run this command to build the package:

Next, we need to add this package as a dependency in our react native project. So inside <rte-code>packages/mobile/package.json<rte-code> add <rte-code>@example-app/shared<rte-code> as a dependency.

Note that the version of the package must match the version specified inside packages/shared/package.json. Previously we defined that @example-app/shared version is 1.0.0.

And also inside the metro.config.js

Now, run this command in the root directory, so yarn will set up symlinks for your shared package.

Right now we should be able to import the add function inside React Native app.

Setting up a React project

In order to set up a React project, execute the command below inside <rte-code>packages/web<rte-code>:

Add <rte-code>@example-app/shared<rte-code> dependency:

And we can import and use the shared package:

Sharing UI components with React Native Web

In order to share UI components, we need React Native Web which provides a compatibility layer between React DOM and React Native.

Installation steps

Install react-native-web:

Install <rte-code>babel-plugin-react-native-web<rte-code>

Modify shared package to export React Native component

First inside <rte-code>packages/shared<rte-code>, create a new file called <rte-code>TestComponent.tsx<rte-code>

Next export it from the <rte-code>index.ts file<rte-code>:

Rebuild the shared package inside <rte-code>packages/shared<rte-code> folder:

And now we should be able to use <rte-code>TestComponent<rte-code> inside a React app.

To sum up

Setting up a monorepo can be tricky, but it pays off in the long run! You can easily share all of your code and assets between React and React Native.

Using a monorepo is growing in popularity - there is even an open proposal to migrate react-native repository to monorepo. Find out more about React Native monorepo on github.

FAQ

No items found.
React Galaxy City
Get our newsletter
Sign up

By subscribing to the newsletter, you give us consent to use your email address to deliver curated content. We will process your email address until you unsubscribe or otherwise object to the processing of your personal data for marketing purposes. You can unsubscribe or exercise other privacy rights at any time. For details, visit our Privacy Policy.

Callstack astronaut
Download our ebook
Download

I agree to receive electronic communications By checking any of the boxes, you give us consent to use your email address for our direct marketing purposes, including the latest tech & biz updates. We will process your email address and names (if you have entered them into the above form) until you withdraw your consent to the processing of your names, or unsubscribe, or otherwise object to the processing of your personal data for marketing purposes. You can unsubscribe or exercise other privacy rights at any time. For details, visit our Privacy Policy.

By pressing the “Download” button, you give us consent to use your email address to send you a copy of the Ultimate Guide to React Native Optimization.