What problem does it solve? It guides developers through deploying Expo web applications and Expo Router API routes to EAS Hosting, handling the export, deploy, environment secrets, and custom domain configuration that would otherwise require piecing together scattered Expo documentation. ## Core Features & Use Cases - Web and API Deployment: Export the web bundle with npx expo export -p web and ship it with eas deploy for production or PR preview URLs. - API Route Authoring: Create +api.ts handlers with HTTP methods, dynamic routes, request parsing, CORS headers, and error handling. - Runtime Guidance: Work within Cloudflare Workers constraints such as no Node.js filesystem, 30-second execution limits, and Web API alternatives. - Use Case: You built an Expo Router app that needs a server-side endpoint to proxy OpenAI requests without exposing your API key. Use this Skill to author an app/api/ai+api.ts route, set the secret with eas env:create, and deploy to production with a custom domain. ## Quick Start Use the eas-hosting skill to deploy my Expo web app and its API routes to EAS Hosting production.