What backend framework would you pick for a simple web app with user auth and CRUD functionality?

0
30
Asked By CuriousCoder88 On

I'm looking to build a simple web app that requires user authentication and authorization, user groups, CRUD operations for some content, and an API layer for both the web front-end and mobile app. Any recommendations on which backend framework would be best suited for this?

5 Answers

Answered By TechieTom On

If you're into C#, I’d recommend ASP.NET. It’s robust and handles user auth well, plus you'll be able to leverage your C# skills effectively.

Answered By CleverDev99 On

I'd say it really comes down to two main options: go with the framework you're most comfortable with, or pick one you want to learn. Most backend frameworks can handle what you need, so choose based on your preferences!

Answered By JavaScriptJunkie On

Have you thought about the MERN stack? It's awesome since you only need to know JavaScript. It performs well and is widely used in big companies. But if you're leaning towards a more traditional approach, many fintech companies tend to stick with C#.

Answered By Pythonista22 On

For a Python developer like me, Django is my go-to almost every time. It fits the bill for user authentication and has a well-established ecosystem to avoid common security pitfalls. But in the end, it really depends on what you're comfortable with!

Answered By RubyFan101 On

Ruby on Rails is a solid choice for what you're looking to build. With the right gems, it can manage authorization, and it excels at CRUD operations with its built-in ORM. You might need to create a Group model manually for user groups, but it's straightforward!

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.