This is an Expo project created with create-expo-app.
- React Native – Cross-platform mobile development (iOS & Android)
- TypeScript – Strongly typed JavaScript for safer and more scalable code
- Tailwind CSS – Utility-first styling framework for fast and consistent UI design
- SQL Database – Structured data storage for users, app content, and analytics
- Cloudflare – Edge computing, serverless functions, API routing, security, and global performance optimization
- React Native handles the mobile interface.
- TypeScript ensures type safety across the codebase.
- Tailwind provides consistent and maintainable styling.
- SQL stores structured application data.
- Cloudflare powers serverless backend logic, API endpoints, authentication, and global content delivery.
-
Install dependencies
npm install
-
Start the app
npx expo start
In the output, you'll find options to open the app in a
- development build
- Android emulator
- iOS simulator
- Expo Go, a limited sandbox for trying out app development with Expo
You can start developing by editing the files inside the app directory. This project uses file-based routing.
When you're ready, run:
npm run reset-projectThis command will move the starter code to the app-example directory and create a blank app directory where you can start developing.
To learn more about developing your project with Expo, look at the following resources:
- Expo documentation: Learn fundamentals, or go into advanced topics with our guides.
- Learn Expo tutorial: Follow a step-by-step tutorial where you'll create a project that runs on Android, iOS, and the web.
Join our community of developers creating universal apps.
- Expo on GitHub: View our open source platform and contribute.
- Discord community: Chat with Expo users and ask questions.
-
Open a 2nd terminal window while keeping the client terminal open
-
Cd into the /server directory
cd server -
Install dependencies
npm install express cors dotenv
-
Start the server with the /server directory
npm run dev