Choosing the Right Backend for a React Native App

0
13
Asked By CuriousCoder84 On

I'm building a React Native application and I'm trying to figure out the best backend solution for handling server-side aspects like authentication, database management, and storage. We want a setup that allows separate backend accounts for each customer. Should I go for a traditional setup using Express.js, or is a serverless architecture more suitable for our needs? I'm open to any recommendations for tech stacks as well!

4 Answers

Answered By CodeCrafter77 On

You might want to look into Supabase! It's pretty much a one-stop shop and has good documentation specifically for React Native usage.

Answered By TechWizard99 On

Have you considered using Pocketbase with Golang? It's pretty flexible but just keep in mind that it's not fully production-ready yet.

Answered By DevDude42 On

Firebase could be a fantastic choice here! With Firestore, you'll get real-time data capabilities and solid offline support. Plus, Firebase Authentication integrates seamlessly, and for backend tasks, you can utilize Firebase Functions, which are like AWS Lambda functions.

Answered By ServerSideSam On

Just a heads-up—relying solely on a database might not cover all your backend needs. If you're into TypeScript, NestJS is a great option; it supports OAuth2 with Passport. Plus, for React Native, having a proper API can be crucial. A serverless setup might be more suited for web apps like Next.js, not necessarily fitting for your use case.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.