The Next Wave of Mobile Apps is The Instant Prototype

Jan 22, 2026

The Next Wave of Mobile Apps is The Instant Prototype

Is the local IDE dead? Sanket Sahu discusses the rise of 'vibe-coding' and how browser-native tools like RapidNative are reshaping the future of mobile app development.

Author

Amrit Saluja
Amrit SalujaTechnical Content Writer

Editor’s Note: Sanket Sahu, co-founder of GeekyAnts and creator of gluestack, recently made waves with a deep dive on the Expo blog about building a development server entirely in the browser. It was a technical masterclass, but we wanted to dig into the why behind the code. We sat down with Sanket to talk about what his new build means for the everyday founder and how "browser-native" tools are actually changing the game for enterprise AI.

Conversation is edited for clarity and easy perusal.

Amrit Saluja (AS): We’re hearing a lot about "vibe-coding" lately, Sanket. Does this move toward browser-native architecture mean the local IDE is becoming optional, or is it a hybrid future?

Sanket Sahu(SS): Vibe-coding is on the rise because browser-based tools make building apps more accessible by reducing friction. The world of development is definitely moving toward a hybrid model.

AS: Let us talk about that friction. For those who have not read the Expo piece, what exactly did you build to solve it?

SS: In short, I rebuilt an entire development server inside the browser. In RapidNative, there’s no npm run dev, no CLI, and no external server. The code updates in the preview in under 100ms with your state fully preserved.

AS: What was wrong with the previous approach?

SS: The earlier version ran a sandbox in the cloud. It worked, but when you're building an AI tool that streams code in real-time, every millisecond of latency breaks the magic. That round-trip to the cloud was noticeable. I didn't want "fast"—I wanted instant.

AS: You compared your approach to a traditional dev server. How did you manage to move those heavy functions into a browser tab?

SS: A traditional server (like Metro) watches the file system, transpiles code, bundles modules, and serves them via HTTP. We found browser-native replacements for all of it. Service Workers replace the HTTP server. IndexedDB with a Virtual File System (VFS) replaces the physical file system. Babel Standalone handles transpilation, and Import Maps eliminate the need for bundling.

AS: That sounds very Vite-like. Was Vite the inspiration?

SS: Absolutely. Both share the same insight: modern browsers support ES modules, so why bundle during development? The difference is that Vite still needs Node.js and a CLI. RapidNative takes Vite’s philosophy to its logical extreme—everything happens in the browser.

AS: Why was the "dual VFS architecture" necessary for this to work?

SS: We use two file systems in tandem. The Source VFS stores your raw TypeScript/JSX code. When a file changes, it triggers a transformation, and the result goes into the Destination VFS as plain JavaScript. The Service Worker always serves from the Destination VFS. This separation keeps the pipeline clean and lightning-fast.

AS: For a founder or a CFO with zero tech skills, how does this 100ms preview actually help them raise a seed round?

SS: Faster iteration speed keeps you in the creative flow. That results in better MVPs and getting your first paid user faster. Getting your dream app running on your phone in less than 2 minutes is the "aha-moment" for our users.

AS: How is this different from something like Expo Snack for a founder?

SS: They are different tools. Snack is a browser-based REPL for developers to test snippets. RapidNative is a platform for building full apps. While Snack is optimized for running on actual devices, RapidNative is optimized for instant browser feedback during AI-assisted development. We give you that sub-100ms update that is critical when an AI is streaming code changes in real-time.

AS: Who should be using RapidNative today? Is it for startups or enterprises?

SS: Currently, it’s ideal for individuals and startups with an idea. But with features like customization, teams, and compliance in the works, we are making it compatible for agencies and enterprises as well.

AS: What’s left on the technical roadmap?

SS: Three big things: A TypeScript Language Server for proper autocomplete in the editor, browser-native Git operations via isomorphic-git, and adding native device support through Expo Go so you get the best of both worlds.

AS: Now to summarize, you’ve built NativeBase, gluestack, and now RapidNative. Looking back, has your goal shifted as AI entered the picture, or are you still solving the same core problems?

SS: The vision has remained the same. I love solving friction problems for devs, designers, and now for founders and PMs. AI is the enabler and the accelerator in that process. It helps in removing the barriers between having an idea and seeing it on a screen.

Subscribe to Our Newsletter

More from the engineering frontline.

Dive deep into our research and insights on design, development, and the impact of various trends to businesses.
Insight
Building Local LLMs Using Dart FFI And llama.cpp: Beyond Wrapper Packages
Sep 11, 2026

Building Local LLMs Using Dart FFI And llama.cpp: Beyond Wrapper Packages

Build local LLMs in Flutter with Dart FFI and llama.cpp, and see how native bridges, GGUF models, memory management, and token streaming enable private, on-device AI.

Insight
My Flutter App Froze With Three Photos on Screen. Here's What I Was Doing Wrong
Sep 11, 2026

My Flutter App Froze With Three Photos on Screen. Here's What I Was Doing Wrong

This blog explains how rethinking Flutter’s image-processing architecture fixed severe performance issues and improved rendering efficiency.

Insight
Building a Production-Ready Canva-like Editor with Konva.js, React 19 and Next.js 15
Sep 10, 2026

Building a Production-Ready Canva-like Editor with Konva.js, React 19 and Next.js 15

This blog explains how to build a production-ready canvas editor with Konva.js, React, and Next.js, covering architecture, performance, and key engineering decisions.

Insight
What a PHP-to-NestJS Banking Migration Taught Us About Architecture, Security, and Trust
Sep 8, 2026

What a PHP-to-NestJS Banking Migration Taught Us About Architecture, Security, and Trust

This blog explores the architecture, security, performance, and documentation lessons from migrating a legacy PHP/Laravel banking platform to NestJS.

Insight
Building Production-Grade Video Thumbnail Scrubbing in the Browser: HLS, Frame Extraction, Caching, and Performance Trade-offs
Sep 7, 2026

Building Production-Grade Video Thumbnail Scrubbing in the Browser: HLS, Frame Extraction, Caching, and Performance Trade-offs

This blog explains how to build responsive video thumbnail scrubbing in the browser for local files and HLS streams, covering frame extraction, caching, and performance trade-offs.

Insight
The Agent Can See Your App. How Often Can It Look?
Sep 4, 2026

The Agent Can See Your App. How Often Can It Look?

AI coding agents can now interact with mobile apps, but their effectiveness depends on iteration speed. This blog explores how React Native architecture influences feedback loops and AI-driven developer productivity.

Insight
Building Interactive Cards from Design JSON Without Killing Your Feed: Overlays, Video, Mute/Unmute, and Lag-Free Lists
Sep 1, 2026

Building Interactive Cards from Design JSON Without Killing Your Feed: Overlays, Video, Mute/Unmute, and Lag-Free Lists

Learn how to turn design JSON into interactive, video-enabled cards using overlays, smart media controls, caching, and virtualization without slowing down high-cardinality feeds.

The Right Conversation Can

Save You Six Months.

Book a call
The Future of Mobile Apps: Sanket Sahu on Vibe-Coding - GeekyAnts