RORK LABJP
TOOLING — Rork's developer repos keep moving: rork-xcode was updated on July 16, rork-device on July 15, and rork-plist on July 13OPUS46 — Claude Opus 4.6 is live in Rork, and Rork Max is built to assemble apps on top of Claude CodeSIM — A cloud iOS simulator runs in the browser, with one click to install on a device and two clicks to publish to the App StoreMAX — Rork Max emits pure Swift rather than React Native, reaching iPhone, iPad, Apple Watch, Apple TV, Vision Pro, and even iMessageNATIVE — That opens up HealthKit, ARKit and LiDAR, NFC, Dynamic Island, Live Activities, 3D through Metal, and on-device inference with Core MLSEED — Rork raised a $15M seed led by Left Lane Capital, with Peak XV and a16z Speedrun joining the roundTOOLING — Rork's developer repos keep moving: rork-xcode was updated on July 16, rork-device on July 15, and rork-plist on July 13OPUS46 — Claude Opus 4.6 is live in Rork, and Rork Max is built to assemble apps on top of Claude CodeSIM — A cloud iOS simulator runs in the browser, with one click to install on a device and two clicks to publish to the App StoreMAX — Rork Max emits pure Swift rather than React Native, reaching iPhone, iPad, Apple Watch, Apple TV, Vision Pro, and even iMessageNATIVE — That opens up HealthKit, ARKit and LiDAR, NFC, Dynamic Island, Live Activities, 3D through Metal, and on-device inference with Core MLSEED — Rork raised a $15M seed led by Left Lane Capital, with Peak XV and a16z Speedrun joining the round
Articles/Dev Tools
Dev Tools/2026-04-07Advanced

Rork Max × Expo Router Web: Deploy iOS, Android & Web from a Single Codebase

A complete guide to adding web support to your Rork Max app using Expo Router v5. Covers platform-specific UI branching, SEO meta tags, Cloudflare Pages deployment, and a unified CI/CD pipeline for iOS, Android, and Web.

Rork Max229Expo Router5cross-platform6React Native Webweb supportSEOCloudflare Pages

Premium Article

"We have an iOS and Android app — can we also ship a web version?" It's a common question, and the traditional answer involves maintaining a separate Next.js or Remix codebase, doubling or tripling your maintenance burden every time you add a feature.

Expo Router v5's web support changes this equation significantly. Your Rork Max–generated React Native app can be compiled for the browser with minimal additional code. This guide covers everything from the initial setup to SEO optimization, Cloudflare Pages deployment, and a unified CI/CD pipeline that ships all three platforms on every commit.

How Expo Router Web Works

Expo Router is a file-system routing library built on React Navigation. Under the hood, web builds use react-native-web to map React Native primitives to DOM elements: <View> becomes <div>, <Text> becomes <span>, and so on.

Your app/ directory structure becomes your URL structure:

app/
  ├── (tabs)/
  │   ├── _layout.tsx      ← Tab navigation
  │   ├── index.tsx        ← Route: /
  │   ├── explore.tsx      ← Route: /explore
  │   └── settings.tsx     ← Route: /settings
  ├── articles/
  │   ├── [id].tsx         ← Route: /articles/:id
  │   └── index.tsx        ← Route: /articles
  └── _layout.tsx          ← Root layout

Setting Up Web Support

Configuring app.json

{
  "expo": {
    "name": "MyApp",
    "slug": "my-app",
    "platforms": ["ios", "android", "web"],
    "web": {
      "bundler": "metro",
      "output": "static",
      "favicon": "./assets/favicon.png"
    },
    "experiments": {
      "typedRoutes": true
    }
  }
}

Use "output": "static" to generate static HTML files at build time — better for SEO and CDN caching than server-rendered output.

Installing Dependencies

npx expo install react-native-web react-dom @expo/metro-runtime

Running the Web Build

# Development — opens in browser alongside the simulator
npx expo start --web
 
# Production static build
npx expo export --platform web
# Output: dist/ directory with HTML, JS, and CSS files

Thank you for reading this far.

Continue Reading

What follows includes implementation code, benchmarks, and practical content we hope you'll find useful. This site runs without ads — server and development costs are supported entirely by members like you. If it's been helpful, we'd be truly grateful for your support.

WHAT YOU'LL LEARN
Configure Expo Router v5 web support to manage iOS, Android, and Web from a single codebase
Platform branching with Platform.select and .web.tsx file extensions for platform-specific UI
Deploy to Cloudflare Pages with automatic SSL, custom domains, and a unified GitHub Actions CI/CD pipeline
Secure payment via Stripe · Cancel anytime

Unlock This Article

Get full access to the rest of this article. Buy once, read anytime. This site is ad-free — your support goes directly toward keeping it running.

or
Unlock all articles with Membership →
Share

Thank You for Reading

Rork Lab is ad-free, supported entirely by members like you. We publish practical guides daily with implementation code, benchmarks, and production-ready patterns. If you've found it useful, we'd love to have you on board.

  • Copy-paste ready implementation code
  • New advanced guides published daily
  • $5/mo or $10 for lifetime access
View Membership →

Related Articles

Dev Tools2026-04-18
SwiftUI vs React Native Built with Rork Max — A Side-by-Side Comparison Report
I built the same app twice — once in SwiftUI, once in React Native — using Rork Max for both. Here are the real numbers on development speed, performance, and maintainability.
Dev Tools2026-03-27
Advanced Navigation Patterns in Rork Max — Nested Structures, Custom Transitions, Auth Flows, and Shared Element Transitions
An advanced Rork Max navigation guide grounded in apps I have run solo since 2013. Beyond nested Expo Router structures, auth flow branching, and shared element transitions, it covers six production pitfalls and their fixes with working code.
Dev Tools2026-07-18
Your AR Furniture Is Gone by Morning — Persisting Placements with ARWorldMap
AR apps generated by Rork Max lose every placed object on relaunch. Here is the design that fixes it: when to save an ARWorldMap, how to encode custom anchors, how to handle the relocalization wait, and what to do when relocalization simply never lands.
📚RECOMMENDED BOOKS
Build a Large Language Model (From Scratch)
Sebastian Raschka
LLM Dev
Prompt Engineering for LLMs
Berryman & Ziegler
Prompting
AI Engineering
Chip Huyen
AI Eng
* Contains affiliate links
See all →