Skip to main content

167 posts tagged with "React Native"

The React Native tag archive contains a rich collection of articles and tutorials aimed at helping developers enhance their skills and knowledge in React Native mobile development.

View All Tags

Expo Router API Routes and EAS Hosting: A Backend for React Native Apps

· 5 min read
Full Stack Developer

Expo Router API routes give React Native teams a practical middle ground between "everything is client-side" and "we need a separate backend project before we can ship." With EAS Hosting, those routes can be deployed alongside an Expo Router web app and used for server-side work such as secrets, validation, webhooks, AI calls, and small backend endpoints.

Expo Router API routes and EAS Hosting backend architecture

Firebase AI Logic vs OpenAI Backend for React Native AI Apps

· 6 min read
Full Stack Developer

React Native teams now have two practical ways to add serious AI features to a mobile app:

  • call Gemini models through Firebase AI Logic from a Firebase-aware app;
  • keep AI orchestration on your own backend and call OpenAI from the server.

Both approaches can be correct. The wrong choice is usually the one that ignores secrets, user identity, App Store release cycles, cost controls, and how quickly your AI product will evolve.

Comparison of Firebase AI Logic and OpenAI backend architecture for React Native

Passkeys in React Native: Passwordless Login on iOS and Android

· 6 min read
Full Stack Developer

Passkeys are becoming the default answer to a long-standing mobile product problem: users dislike passwords, password reset flows are expensive, and weak credentials create security risk that your app has to absorb later.

For React Native teams, passkeys are not just a new login button. A production implementation touches native platform APIs, your backend authentication model, domain association files, account recovery, QA devices, and store release testing.

Passkey authentication architecture for React Native apps