Create a new app
At this point we should have Expo CLI installed on our development machine and the Expo Go app on an iOS or Android physical device or emulator. If not, go back to the
Installation guide before proceeding.
# Create a project named my-app
→
npx create-expo-app my-app
# Navigate to the project directory
→
cd my-app
When you run
expo start
(or
npm start
), Expo CLI starts Metro Bundler, which is an HTTP server that compiles the JavaScript code of our app using
Babel and serves it to the Expo app.
👨👩👧👧
You can open the project on multiple devices simultaneously. Go ahead and try it on an iPhone and Android phone at the same time if you have both handy.
- 🍎 On your iPhone or iPad, open the default Apple "Camera" app and scan the QR code you see in the terminal.
- 🤖 On your Android device, press "Scan QR Code" on the "Projects" tab of the Expo Go app and scan the QR code you see in the terminal.
Is the app not loading on your device?
First, make sure that you are on the same wifi 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.
🐢
Using the "Tunnel" connection type will make app reloads considerably slower than on "LAN" or "Local", so it's best to avoid tunnel when possible. You may want to install a simulator/emulator to speed up development if "Tunnel" is required for accessing your machine from another device on your network.
Using a simulator or emulator?
If you are using a simulator or emulator, you may find the following Expo CLI keyboard shortcuts to be useful:
Open up App.js and change the text to "Hello, world!". You should see it update on your device. This is great progress, we now have the Expo toolchain running on our machine and we are able to edit the source code for a project and see the changes live on our device!
Are the changes not showing up on your device?
Expo Go is configured by default to automatically reload the app whenever a file is changed, but let's just make sure we go over the steps to enable it in case somehow things just aren't working.
Next, close the 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 ⌘+d
for iOS or ctrl+m
for Android.
If you see Enable Fast Refresh
, press it. If you see Disable Fast Refresh
, then dismiss the developer menu. Now try making another change.