What’s the Best Tech Stack for a Simple CRUD Application?

0
24
Asked By CreativeFalcon97 On

I've taken a break from software development for a while and want to build a simple CRUD app. This app will support different user roles—some users will have full CRUD permissions while others will only have read or read-update access. The app aims to manage a small fleet of vehicles, handling things like maintenance schedules and notes for drivers and mechanics. The last application I worked on was built many years ago using PHP and MySQL, and I'm unsure what stack to use now.

5 Answers

Answered By TechGuru88 On

There's no one-size-fits-all answer; different people might suggest different stacks. You could consider options like Single Page Apps using React or Next.js, or server-side solutions like Django.

Answered By FrontendWizard On

The backend part of CRUD is usually straightforward with many patterns available, but the front end can get tricky. Try out popular frameworks like React/Next.js or Svelte/SvelteKit. Find what feels intuitive for you. I lean toward Svelte for its simplicity, but Next with Zustand has its strengths too!

Answered By JSNinja11 On

Good news! PHP and MySQL are still solid choices. Make sure to use PDO with prepared statements for security. If your app grows, consider using a front-end framework like Vue.js. But honestly, PHP with vanilla JS can still work well, especially with the help of AI tools today.

Answered By DevExplorer99 On

You could also explore using Go with Postgres. It's a modern stack that can be pretty efficient!

Answered By CodeSlinger22 On

Using PHP and MySQL is still a great option! It's simple and reliable for building CRUD apps. If you go this route, make sure to check out some resources about modern PHP practices to avoid old pitfalls.

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.