Learn how to get started creating a new Expo project quickly and easily using Expo CLI and Expo Go.
To develop applications with Expo, you will want to start with two tools:
Linux, macOS and Windows are all supported as your development machine. You can use any web browser to run the project on the web.
You don't need macOS to build an iOS app with EAS. You only need an iOS device to run development builds.
Expo CLI is a command-line tool that is the primary interface between a developer and other Expo tools. It is used for different tasks in the development life cycle of your project such as serving the project in development, viewing logs, opening the app on an emulator or a physical device, and so on.
To use Expo CLI, you need to have the following tools installed on your developer machine:
As Node.js officially states, "Production applications should only use Active LTS or Maintenance LTS releases". You can install Node.js using a version management tool (such as nvm
or volta
or any other of your choice) to switch between different Node.js versions.
Expo CLI is part of the expo
package, and you can use it by leveraging npx
— a Node.js package runner. No external installation is required.
For example, to see a list of available commands in Expo CLI, open the terminal on your development machine and run the following command:
# See a list of available commands in Expo CLI
-
npx expo -h
Now, run the following command to check which Expo account is currently authenticated on your machine:
-
npx expo whoami
You will see a Not logged in message since you are not logged in to an Expo account. You do not need an account to start and can proceed further with your project. However, if you want to register a new Expo account, run the following command to register a new account:
-
npx expo register
If you already have an Expo account, you can log in to it by running the command:
-
npx expo login
Now that Expo CLI is working, in the next step, let's learn about one of the fastest ways to test your project using Expo Go.