Best Approaches to Building a Simple Web App Without React or Vue in 2025?

0
15
Asked By WanderingCoder382 On

I'm working on a KYC system and need to create a minimal viable product (MVP) that collects user information, stores it in a database, and implements basic authentication. While I'm a fan of frameworks like Next.js, React, Svelte, etc., I find they often bring unnecessary JavaScript for a small app, leading me to consider alternatives. I'm exploring options like Qwik and HTMX, but I'm hit with concerns regarding new teammate onboarding and build pipeline complexities. I'm also curious about how to efficiently handle minification, components, and critical CSS. I want to minimize JavaScript and return to a simpler workflow, but I'm afraid I might be overlooking some solutions, so I'd appreciate any advice on this.

1 Answer

Answered By PHPGuru387 On

You really might be overthinking this. For basic authentication and form handling, PHP is a solid choice. No complex build steps and it performs well. You can stick with native CSS and JS imports, too. If you want a bit more functionality without overcomplicating things, Laravel could be a nice option for you.

DevNostalgia123 -

I totally get that. I miss the simplicity of PHP too! Just a git pull to deploy has given me the fastest sites I've worked on.

SimplicityWins -

It's tempting, especially with the lack of boilerplate. I think many overlook how efficient PHP can be for straightforward projects!

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.