# Expo — Universal Native Apps for iOS, Android & Web > Expo is an open-source framework and platform for making universal React Native apps. Ship to iOS, Android, and web from one codebase — OTA updates, managed workflow, EAS Build cloud service, and 100+ prebuilt native modules. ## Install Save as a script file and run: ## Quick Use ```bash npx create-expo-app@latest my-app cd my-app npm start # Metro bundler + QR code ``` Scan the QR with Expo Go app on your phone, or run: ```bash npm run ios # iOS simulator npm run android # Android emulator npm run web # Browser ``` A component: ```tsx import { Text, View, Button } from "react-native"; import * as Haptics from "expo-haptics"; export default function App() { return ( Hello from Expo