Learn how to create a new Expo project and run it on your device.
The process of running a new Expo project consists of three steps. You start by initializing a new project, then start the development server with Expo CLI and finally open the app on your device with Expo Go to see your changes live.
1
To initialize a new project, use create-expo-app
to run the following command:
# Create a project named my-app
-
npx create-expo-app my-app
# Navigate to the project directory
-
cd my-app
You can also use the--template
option with thecreate-expo-app
command. Runnpx create-expo-app --template
to see the list of available templates.
2
To start the development server, run the following command:
-
npx expo start
When you run the above command, the Expo CLI starts Metro Bundler. This bundler is an HTTP server that compiles the JavaScript code of your app using Babel and serves it to the Expo app. See how Expo Development Server works for more information about this process.
3
To open the app your device that has Expo Go already installed:
You can open the project on multiple devices simultaneously. Go ahead and try it on both phones at the same time if you have them handy.
First, make sure you are on the same Wi-Fi network on your computer and your device.
If it still doesn't work, it may be due to the router configuration — this is common for public networks. You can work around this by choosing the Tunnel connection type when starting the development server, then scanning the QR code again.
-
npx expo start --tunnel
Using the Tunnel connection type will make the app reloads considerably slower than on LAN or Local, so it's best to avoid tunnel when possible. You may want to install an emulator/simulator to speed up development if Tunnel is required for accessing your machine from another device on your network.
If you are using an emulator/simulator, you may find the following Expo CLI keyboard shortcuts to be useful to open the app on any of the following platforms:
4
Now, all the steps are completed to get started, you can open App.js file in your code editor and change the contents of the existing <Text>
to Hello, world!
. You are going to see it update on your device.
Amazing, progress! You now have the Expo toolchain running on your machine, can edit the source code for a project, and see the changes live on your device.
Expo Go is configured by default to automatically reload the app whenever a file is changed, but let's make sure to go over the steps to enable it in case somehow things aren't working.
Make sure you have the development mode enabled in Expo CLI.
Close the Expo app and reopen it.
Once the app is open again, shake your device to reveal the developer menu. If you are using an emulator, press Ctrl + M for Android or Cmd ⌘ + D for iOS.
If you see Enable Fast Refresh, press it. If you see Disable Fast Refresh, dismiss the developer menu. Now try making another change.
If you are new to Expo, learn more about the ecosystem by creating a universal app that runs on Android, iOS, and web.