--- title: Create a project description: Learn how to create a new Expo project and run it on your device. --- import { Collapsible } from '~/ui/components/Collapsible'; import { Terminal } from '~/ui/components/Snippet'; import ImageSpotlight from '~/components/plugins/ImageSpotlight'; import { Step } from '~/ui/components/Step'; import { BoxLink } from '~/ui/components/BoxLink'; 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. ## Initialize a new project To initialize a new project, use [`create-expo-app`](/more/glossary-of-terms/#create-expo-app) to run the following command: > **info** You can also use the `--template` option with the `create-expo-app` command. Run `npx create-expo-app --template` to see the list of available templates. ## Start the development server To start the development server, run the following command: When you run the above command, the Expo CLI starts [Metro Bundler](/guides/customizing-metro). This bundler is an HTTP server that compiles the JavaScript code of your app using [Babel](https://babeljs.io/) and serves it to the Expo app. See how [Expo Development Server](/more/expo-cli/#develop) works for more information about this process. ## Open the app on your device To open the app your device that has Expo Go already installed: - On your Android device, press **Scan QR Code** on the **Home** tab of the Expo Go app and scan the QR code you see in the terminal. - On your iPhone or iPad, open the default Apple **Camera** app and scan the QR code you see in the terminal. 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. > 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: - Pressing a will open in an [Android Emulator or connected device](/workflow/android-studio-emulator). - Pressing i will open in an [iOS Simulator](/workflow/ios-simulator). - Pressing w will open in a [web browser](/workflow/web). Expo supports all major browsers. ## Make your first change in App.js 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 `` 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](/workflow/development-mode#development-mode). - 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. ## Next step {/* Add a link to the project structure page here to allow the user to continue their journey */} {/* Add a link to the tutorial here */}