A monorepo template for building mobile apps with Expo and a Cloudflare Workers API.
packages/
├── app/ # Expo mobile app (iOS, Android, Web)
└── api/ # Cloudflare Workers API with Hono
bun install
bun devThis starts both servers concurrently:
- API: http://localhost:8787
- App: Expo dev server with QR code for Expo Go
- Web: Open the web preview URL in browser
- Mobile: Scan QR code with Expo Go app on your phone
bun dev # Start both app and API
bun dev --api # API only
bun dev --app # App only
bun build # Build both (verify no errors)# Deploy API to Cloudflare Workers
cd packages/api && bun run deployFor app store builds, use EAS Build.