HomeGuidesReferenceLearn
ArchiveExpo SnackDiscord and ForumsNewsletter

Glossary of terms

List of non-obvious terms used withing the documentation, related to Expo or cross-platform development in general.


Android

The mobile operating system sponsored by Google for use with Android devices.

App config

A file named app.json, app.config.json, app.config.js, or app.config.ts in the root of a project directory. For more information, see app config configuration.

This file is used for the following purposes:

  • To configure how Expo CLI works.
  • Generate a project's public manifest in EAS Update (think index.html but for native apps).
  • Add Expo config plugins and configure how npx expo prebuild generates native code.

app.json

An app config file.

Apple capabilities

Cloud services provided by Apple. These services must be enabled for an application in the Apple Developer Portal.

Apple Developer Portal

Apple's official website for managing application code signing. EAS Credentials automate most of the common reasons a developer might visit this website when developing an app.

Auto capability signing

A feature of EAS Build that automatically enables or disables Apple capabilities based on the project's entitlements file. Learn more.

Autolinking

A cross-platform tool for automatically linking native modules to native apps via native package managers.

  • On Android the tool is used in the android/app/build.gradle and invoked during the Gradle sync process.
  • On iOS the tool is used in CocoaPods ios/Podfile and invoked during pod install.

There are two versions of Autolinking: Expo Autolinking, and Community Autolinking.

The default Prebuild template includes support for Expo Autolinking, and the Community Autolinking fork.

Babel

Transpiler used for removing language features that aren't available in the runtime's JavaScript engine. Metro uses Babel internally.

Projects can configure how Babel is used by modifying the babel.config.js file in the project directory. This file is optional when using Expo CLI. Expo projects should extend the default Babel preset babel-preset-expo.

Bun

A JavaScript runtime and a drop-in alternative for Node.js. For more information about usage with Expo and EAS, see using Bun guide.

CocoaPods

The iOS package manager used to link native modules to the native iOS project. This package manager is configured using the ios/Podfile and updated when a user runs pod install in the ios directory.

Community Autolinking

This refers to the React Native community fork of the Expo Autolinking. The requirements for linking a module are different from Expo Autolinking, however, the implementation is the same.

Config introspection

A process for evaluating the results of npx expo prebuild in-memory without persisting any code changes. This is used in Auto Capability Signing to determine what the entitlements file will look like without generating any native code. This process is also used in the VS Code Expo extension to debug Config Mods.

Config Mods

Async functions that are appended to the app config for use in Prebuild. These functions are given a single native file to modify such as AndroidManifest.xml or Info.plist. Config mods are chained together and come from the package @expo/config-plugins. For more information, see Config plugins.

Config Plugin

A JavaScript function that is used to append config mods to the app Config for use in Prebuild. For more information, see Config Plugins.

Continuous Native Generation (CNG)

A process for building an Expo app where your native projects files (for example, android and ios directories) are generated on-demand from your app.json and package.json files, similar to how your node_modules are generated from your package.json file. See CNG guide for more information.

create-expo-app

A standalone command line tool (CLI) for bootstrapping new React Native apps with the expo package installed.

This package can be used by running any of the following commands:

  • npx create-expo-app
  • yarn create expo-app
  • npm create expo-app

create-react-native-app

A standalone command line tool (CLI) for bootstrapping new React Native apps with the expo package installed and the native code generated. This CLI also enables the use of bootstrapping from an example project in expo/examples.

This package can be used by running any of the following commands:

  • npx create-expo-app
  • yarn create expo-app
  • npm create expo-app

Dangerous Mods

Config modifiers that apply unstable changes to a native project during prebuild. Using these modifiers is unpredictable and prone to breaking changes between major version bumps in Expo SDK.

Dev clients

A native runtime that has been built in development mode. These builds often include the expo-dev-client native module for improved debugging.

Development server

A development server (or dev server) is a server that is started locally, usually by running npx expo start from Expo CLI.

The development server is typically hosted on http://localhost:8081. It hosts a manifest from / which the client uses to request the JavaScript bundle from the bundler.

EAS

Expo Application Services (EAS) are deeply-integrated cloud services for Expo and React Native apps, such as EAS Build, EAS Submit and EAS Update.

EAS CLI

The command-line tool for working with EAS.

EAS Config

The eas.json file used to configure EAS CLI. For more information, see Configuring EAS Build with eas.json.

EAS Metadata

A command-line tool for uploading and downloading Apple App Store metadata as JSON. This tool is available in the EAS CLI package and should be used to improve the iOS submission process. For more information, see EAS Metadata.

EAS Update

  1. The cloud hosting service EAS Update that is used for OTA Updates.
  2. The CLI command eas update from EAS CLI used to publish static files to the cloud hosting service.

Emulator

Emulator is used to describe software emulators of Android devices on your computers. Typically, iOS emulators are referred to as Simulators.

Entry point

The entry point usually refers to the initial JavaScript file used to load an application. In apps using Expo CLI, the default entry point is ./node_modules/expo/AppEntry.js which simply imports the App.js file from the root project directory and registers it as the initial component in the native app.

Experience

A synonym for app that usually implies something more single-use and smaller in scope, sometimes artistic and whimsical.

Expo Autolinking

The original Autolinking system that is designed for projects using expo-modules-core. This system links modules based on the existence of an expo-module.config.json in the library's root directory.

Expo CLI

The command-line tool for working with Expo. This term now refers to the Local Expo CLI, but historically referred to the Global Expo CLI. For more information, see Expo CLI.

Expo client

The former name for the Expo Go app.

Expo export

Refers to the command npx expo export from Expo CLI. This command is used to bundle the application JavaScript and assets, then export them into a static folder that can be uploaded to a hosting service like EAS Update, and embedded in a native runtime for offline use.

Expo Go

The Android and iOS app that runs React Native apps. When you want to run your app outside of the Expo Go app and deploy it to the app stores, you can build a Standalone App.

Expo install

Refers to the command npx expo install from Expo CLI. This command is used to install npm packages containing native modules that work with the currently installed version of expo in the project. Not all packages are supported. This command wraps the globally installed package managers.

Expo Module Config

A file named expo-module.config.json that lives in the root directory of a native module. For more information, see Module Config.

Expo SDK

A collection of npm packages containing native modules that provides access to device/system functionality such as camera, push notification, contacts, file system, and more.

  • Each package supports Android, iOS, and web whenever possible.
  • The interface is completely written in TypeScript.
  • All packages in the Expo SDK work with each other and can safely be compiled together.
  • Any package in the SDK can be used in any React Native app, with minimal, shared setup. Learn more.
  • All packages are open source and can be freely customized. Many popular community React Native packages started as forks of packages in the Expo SDK.

Expo start

Refers to the command npx expo start from Expo CLI. This command is used to start a local development server that a client connects to to interact with the Metro bundler.

Fabric

The React Native rendering system is used to create and manage native views. This package supports Android and iOS. For more information, see Fabric Renderer.

Flipper

A mobile app debugger. We do not enable Flipper in the default Prebuild template due to instability concerns. For more information, see Flipper documentation.

FYI

Sometimes referred to as Expo FYI, is a collection of tailored solutions to complex issues that live at expo.fyi. FYI links are utilized throughout Expo's developer tooling to help provide a better developer experience to users.

Global Expo CLI

The package expo-cli was installed globally on the user's machine and used across all projects. This CLI was introduced in SDK 30 (2018), and deprecated in favor of the Local Expo CLI in SDK 46 (2022).

Gradle

Gradle is a build automation tool for multi-language software development. It controls the development process in the tasks of compilation and packaging to testing, deployment, and publishing.

Hermes engine

A JavaScript engine developed by Meta for use with React Native. Hermes uses Bytecode to improve startup time. Hermes is better at debugging than JavaScriptCore as it implements parts of the Chrome DevTools Protocol.

iOS

The operating system used on iPhone, iPad, and Apple TV. Expo Go currently runs on iOS for iPhone and iPad.

JavaScript engine

A native package that can evaluate JavaScript on-device. In React Native we often use JavaScriptCore. Other options include Hermes by Meta, and V8 by Google.

JavaScriptCore engine

A JavaScript engine developed by Apple and built-in to iOS. React for Android also uses a version of JavaScriptCore for parity. Debugging with JavaScriptCore is less sophisticated than V8 or Hermes which implement the Chrome DevTools Protocol.

Linking

Linking can mean deep linking into apps similar to how you link to websites on the web or autolinking.

Local Expo CLI

The package @expo/cli is installed with the expo package. This is sometimes referred to as the "Versioned Expo CLI" because it is installed inside of the user's project as opposed to the now deprecated expo-cli which was installed globally.

Manifest

An Expo app manifest is similar to a web app manifest. It provides information that Expo Go needs to know how to run the app and other relevant data. For more information, see Expo Go.

Meta

Formerly Facebook, Meta is the group that develops React Native, Metro Bundler, Hermes Engine, Yoga and more. The Expo team collaborates with Meta to deliver the best possible developer experience.

Metro bundler

The bundler used for converting JavaScript files and assets into a format that runs on a native client. This bundler is maintained by Meta and used exclusively for React Native apps. For more information, see Metro documentation.

Metro Config

The metro.config.js file used to configure Metro bundler. This should extend the package @expo/metro-config when using Expo CLI. For more information, see Customizing Metro.

Monorepo

A project that has multiple sub-projects which are all linked together via the package manager. A monorepo is a great way to link custom native packages to your application.

Native directory

The React Native ecosystem has thousands of libraries. Without a purpose-built tool, it's hard to know what the libraries are, to search through them, to determine the quality, try them out, and filter out the libraries that won't work for your project (some don't work with Expo, some don't work with Android or iOS). React Native Directory is a website that aims to solve this problem, we recommend you use it to find packages to use in your projects.

Native module

A module written in native code that exposes native platform functionality to the JavaScript engine via the JS global. This functionality is usually accessed via import { NativeModules } from 'react-native';.

Native runtime

A native application containing a JavaScript engine, and is capable of running a React application. This includes Expo Go, dev clients, standalone apps, and even web browsers like Chrome.

npm

npm is a package manager for JavaScript and the registry where the packages are stored. An alternative package manager, which we use internally at Expo, is yarn.

Package manager

Automates the process of installing, upgrading, configuring, and removing libraries, also known as dependencies, from your project. See npm and yarn.

Platform extensions

Platform extensions are a feature of the Metro bundler which enable users to substitute files on a per-platform basis given a specific filename. For example, if a project has a ./index.js file and a ./index.ios.js file, then the index.ios.js will be used when bundling for iOS, and the index.js file will be used when bundling for all other platforms.

By default, platform extensions are resolved in @expo/metro-config using the following formula:

  • Android: *.android.js, *.native.js, *.js
  • iOS: *.ios.js, *.native.js, *.js
  • Web: *.web.js, *.js

Prebuild

The process of generating the temporary native android and ios folders for a React Native project based on the app config. This process is performed by running the command npx expo prebuild from Expo CLI in a project directory.

See Prebuild template and Autolinking for further information.

Prebuild template

The React Native project template that is used as the first step of Prebuilding. This template is versioned with the Expo SDK, and the template is chosen based on the installed version of expo in a project. After the template is cloned, npx expo prebuild will evaluate the app config and run the Config mods which modify various files in the template.

Although the template can be changed by using the npx expo prebuild --template /path/to/template flag, the default prebuild template contains important initial defaults that the npx expo prebuild command makes assumptions about.

The default template currently lives at expo-template-bare-minimum.

Publish

We use the word "publish" as a synonym for "deploy". When you publish an app, it becomes available at a persistent URL from Expo Go, or in the case of Standalone apps, it updates the app.

React Native

React Native lets you build mobile apps using only JavaScript. It uses the same design as React, letting you compose a rich mobile UI from declarative components.

React Native Web

A high-performing abstraction on top of react-dom that enables core primitives from React Native to run in the browser. React Native for web (RNW) was developed at X (Twitter) and is currently used for their main website. Expo SDK and Expo CLI have first-class support for RNW.

React Navigation

The preferred navigation library for React Native apps, developed and sponsored by the Expo team.

Remote Debugging

Remote Debugging (also known as Async Chrome Debugging) is an experimental system for debugging React Native apps. The system works by executing the application JavaScript in a Chrome tab's web worker, then sending native commands over websockets to the native device. The benefit being you could use the built-in Chrome break points and network inspector to debug your application. This system does not work with JSI's synchronous calls, meaning it's not a reliable way to debug modern React Native apps. A better alternative to debugging React Native is to use Hermes as you can connect Chrome Dev Tools to it.

Simulator

An emulator for iOS devices that you can run on macOS (or in Snack) to work on your app without having to have a physical device handy.

Slug

We use the word "slug" in app.json to refer to the name to use for your app in its url. For example, the Native Component List app lives at https://expo.dev/@community/native-component-list and the slug is native-component-list.

Snack

Snack is an in-browser development environment where you can build Expo experiences without installing any tools on your phone or computer.

Software Mansion

A development agency in Krakow, Poland. Maintainers of react-native-gesture-handler, react-native-screens, and react-native-reanimated. The platform team at Expo is comprised of a number of contractors from Software Mansion. All of Software Mansion's core React Native libraries are supported in Expo Go.

Standalone app

An application binary that can be submitted to the Android Play Store or iOS App Store. For more information, see Building Standalone Apps.

Store Config

The store.config.json file used to configure EAS Metadata. This file can be generated from an existing App Store entry using eas metadata:pull.

Sweet API

The Swift and Kotlin API for writing React Native modules. This API is provided by the library expo-modules-core which is shipped with the expo package. For more information, see Module API.

TypeScript

TypeScript is a strongly typed programming language that builds on JavaScript, giving you better tooling at any scale. The Expo SDK is written in TypeScript, we highly recommend using it. For more information, see our TypeScript guide.

Updates

Traditionally, apps for Android and iOS are updated by submitting an updated binary to the App and Play stores. Updates allow you to push an update to your app without the overhead of submitting a new release to the stores. For more information, see Publishing documentation.

VS Code Expo Tools

The VS Code extension for improving the developer experience of working with app config files. This extension provides autocomplete and intellisense for the app config, Store Config, Expo Module Config, and EAS Config. For more information, see the VS Code Expo Tools extension.

Watchman

The file watcher used by Metro to perform hot reloads during development. Watchman contains native code and may cause issues when installed globally. Watchman is maintained by Meta and used in Jest.

webpack

The deprecated bundler used by Expo CLI for developing react-native-web apps.

Yarn

A package manager for JavaScript. For more information, see Yarn documentation.

Yarn workspaces

The monorepo solution we recommend for Expo users. See Working with Monorepos for more information on how to configure Yarn workspaces.

Yoga

A native cross-platform library used by React Native internally to provide FlexBox support to native views. React Native styles are passed to Yoga to layout and style elements on the screen. For more information, see Yoga documentation.