RORK LABJP
MAX — Rork Max generates pure Swift apps instead of React Native, covering iPhone through Vision Pro and reaching native features like HealthKit and Core MLTRIAL — Rork Max has a limited-time free trial, a chance to try the $200/month tier without paying upfront — best used with a concrete project in mindSTYLE — Long-term reviews describe a split that works: let the AI generate scaffolding while you own state management and the data layer as features pile upPLAN — A useful lens for pricing: does this plan get you to a shipped release? If it does, even paid tiers are cheap; if not, even the free tier is expensiveREPO — Rork's developer tooling repos keep moving, with rork-xcode and rork-device seeing recent updates around submission and device workflowsMARKET — Gartner projects 75% of new apps will be built with low-code or no-code by the end of 2026, up from under 25% in 2020MAX — Rork Max generates pure Swift apps instead of React Native, covering iPhone through Vision Pro and reaching native features like HealthKit and Core MLTRIAL — Rork Max has a limited-time free trial, a chance to try the $200/month tier without paying upfront — best used with a concrete project in mindSTYLE — Long-term reviews describe a split that works: let the AI generate scaffolding while you own state management and the data layer as features pile upPLAN — A useful lens for pricing: does this plan get you to a shipped release? If it does, even paid tiers are cheap; if not, even the free tier is expensiveREPO — Rork's developer tooling repos keep moving, with rork-xcode and rork-device seeing recent updates around submission and device workflowsMARKET — Gartner projects 75% of new apps will be built with low-code or no-code by the end of 2026, up from under 25% in 2020
TAG

Cloudflare Workers

24 articles
Back to all tags
Related:
Rork13Rork Max5Indie Dev4StoreKit 24AdMob4Expo3RevenueCat3React Native3OpenAI3TypeScript3JWS2App Store Server API2
Rork AI/2026-07-17Advanced

The Three-Minute Video That Kept Failing — Moving Rork's Gemini Uploads Off the Worker

How I rerouted video uploads to the Gemini Files API from a Cloudflare Workers relay to a direct device-to-Google path — why the 128MB isolate limit breaks the relay, how to hand out a resumable upload URL without leaking your API key, and how resolution and frame rate actually decide the bill.

Rork Dev/2026-07-11Advanced

Verifying StoreKit 2 Signed Transactions in a Cloudflare Worker

If you trust whatever the device says about its purchase state, a tampered entitlement walks right through. This walks through verifying StoreKit 2 signed transactions (JWS) in a Cloudflare Worker so you grant entitlements without trusting the client, with working code.

Rork Dev/2026-06-30Advanced

Answering a Refund Request Within 12 Hours: Handling CONSUMPTION_REQUEST in Cloudflare Workers

How to receive the App Store CONSUMPTION_REQUEST notification for your Rork subscription app in Cloudflare Workers and respond to the Send Consumption Information API within 12 hours — with field-by-field mapping and the operational judgment behind it.

Business/2026-06-28Advanced

Don't Pay Out a Rewarded Ad on the Client's Word Alone — SSV Verification for a Rork (Expo) App on a Worker

Trusting the client-side 'reward earned' callback alone invites double-grants and spoofing. Here is how to wire AdMob server-side verification (SSV) into a Rork-generated Expo app, verify the signed callback on a Cloudflare Worker, and make payouts idempotent with transaction_id.

Rork Dev/2026-06-22Advanced

Serving Both Plain Rork and Rork Max From One Backend — Designing an API Response Contract That Never Breaks Old Binaries

When plain Rork (React Native / Expo) and Rork Max (native Swift) both call the same Cloudflare Workers backend, the whole design centers on not breaking old binaries you cannot force-update. Wrap responses in an envelope, evolve them additively, absorb client differences with capability flags, and retire old contracts safely — shown in code.

Rork Dev/2026-06-22Advanced

Hardcoding Your OpenAI Key in a Rork (Expo) App Means It Gets Stolen — Slip a Thin Worker Proxy In Between

Embed an OpenAI or Gemini API key directly in the Expo app Rork generates and it can be extracted from the shipped binary. Here is why a key inside an app is never secret, plus a minimal Cloudflare Workers proxy that hides it (streaming passthrough included), simple abuse controls, and key rotation that needs no app review.

Rork Dev/2026-06-16Advanced

Why Your Rork App's Stripe Webhooks Drop Events Only in Production — Field Notes on Idempotency, Retries, and Out-of-Order Delivery

A field-tested four-layer design for stabilizing Stripe webhooks that pass locally but silently misfire in production: signature verification on Workers, event-ID idempotency, fast-2xx-then-process, and a reconciliation job that survives out-of-order delivery. Built around Cloudflare Workers and KV.

Rork Dev/2026-05-31Advanced

Running Crash-Free Rate as a Budget: An SLO Design Note for Deciding Where to Invest Across 6 Indie Apps

Notes from running 6 wallpaper apps in parallel and the shift from treating crash-free rate as a pass/fail threshold to treating it as an error budget. A working write-up on turning burn rate into investment and sunset decisions.

Rork Dev/2026-05-27Advanced

Making Silent Failures Visible Across 6 Rork Apps: An Early-Warning Design Note for Non-Crash Degradation

Notes from running 6 wallpaper apps in parallel and the layer I built in 3 weeks to make Crashlytics-invisible failures observable. Beacons, timeouts, and a small Cloudflare Worker for cross-app aggregation.

Rork Dev/2026-05-26Advanced

Aggregating App Store Connect, RevenueCat, and AdMob into One Morning Digest with Cloudflare Workers — A Six-App Indie Architecture

A practical architecture for indie developers running multiple Rork apps: aggregate App Store Connect API, RevenueCat REST, and AdMob Reporting API in a Cloudflare Workers Cron job and ship a single daily Slack digest each morning.

Rork Dev/2026-05-24Advanced

Enforcing AI Cost Ceilings at Runtime — A Budget-Guard Architecture for Rork Apps

How to stop runaway AI bills not by optimizing, but by physically enforcing budget at runtime. An indie developer's three-layer architecture using Cloudflare Durable Objects, with hard-won lessons from running 50M-download apps.

Rork Dev/2026-05-09Advanced

Building a Rork A/B Testing Platform with GrowthBook and PostHog from Scratch

Drop Firebase and pair GrowthBook with PostHog to ship a production-grade A/B testing stack for your Rork apps. SDK wiring, edge evaluation on Cloudflare Workers, Bayesian statistics interpretation, and the operational pitfalls I learned the hard way.