ExpoStartup

Getting Started

Start building with the Expo Startup template

Getting Started

Welcome to Expo Startup! This guide will help you set up and run the project after purchasing.

Prerequisites

Before you begin, make sure you have the following installed:

  • Node.js v18+ (we recommend using v18.17.0 or newer)
nvm use 20

Installation Steps

1. Clone the Repository

After purchasing, you'll receive access to the GitHub repository. Clone it to your local machine:

git clone https://github.com/your-purchased-repo-url.git my-app
cd my-app

2. Install Dependencies

Install the required dependencies:

# Navigate to the app directory
cd master-app
 
# Install dependencies
npm install

This project uses Expo SDK 52, which will be installed automatically with the dependencies.

3. Start the Development Server

Run the development server:

# Start the Expo development server
npm run dev

You can then run the app on:

  • iOS simulator by pressing i
  • Android emulator by pressing a
  • Your physical device by scanning the QR code with the Expo Go app

Next Steps

Now that you're set up, explore the following sections:

Troubleshooting

If you encounter any issues during setup:

  1. Make sure you're using Node.js v18 or newer
  2. Try clearing the npm cache: npm cache clean --force
  3. For Expo specific issues, check the Expo documentation

On this page