---
title: Create your first app
---
import { Terminal } from '~/ui/components/Snippet';
import ImageSpotlight from '~/components/plugins/ImageSpotlight';
import { A } from '~/ui/components/Text';
import { Step } from '~/ui/components/Step';
import { BoxLink } from '~/ui/components/BoxLink';
import { BookOpen02Icon, Download03Icon } from '@expo/styleguide-icons';
In this chapter, let's learn how to create a new Expo project and how to get it running.
## Prerequisites
We'll need the following tools to get started:
- Install [Expo Go](https://expo.dev/client) on a physical device.
- Prepare for development by [installing the required tools](/get-started/installation/#requirements).
This tutorial also assumes that you have a basic knowledge of JavaScript and React. If you have never written React code, go through [the official React tutorial](https://react.dev/learn).
## Initialize a new Expo app
We will use `create-expo-app` to initialize a new Expo app. It is a command line tool that allows to create a new React Native project with the `expo` package installed.
It will create a new project directory and install all the necessary dependencies to get the project up and running locally. Run the following command in your terminal:
This command will create a new directory for the project with the name: **StickerSmash**.
## Download assets
After downloading the archive, unzip it and replace the existing **assets** directory with it in the project directory. This will override the default assets created when the new project was initialized.
Now, let's open the project directory in our favorite code editor or IDE. Throughout this tutorial, we will use VS Code for our examples.
## Install dependencies
To run the project on the web, we need to install the following dependencies that will help to run the project on the web:
## Run the app on mobile and web
In the project directory, run the following command to start a development server from the terminal:
Once the development server is running, the easiest way to launch the app is on a physical device with Expo Go. For more information, see Open app on a device.
To see the web app in action, press w in the terminal. It will open the web app in the default web browser.
Once it is running on all platforms, the project should look like this:
The text displayed on the app's screen above can be found in the **App.js** file which is at the root of the project's directory. It is the entry point of the project and is executed when the development server starts.
## Next step
We have created a new Expo project and are ready to develop our StickerSmash app.