this post was submitted on 29 Oct 2023
1 points (100.0% liked)

Side Project

29 readers
1 users here now

A community for sharing and receiving constructive feedback on side projects.

founded 1 year ago
MODERATORS
 

hey all, anyone else feel the paradox of choice with tech stacks for side projects? sometimes simpler is better. what's your go-to stack when you just want to get an idea out fast? would love to swap notes and learn from each other's shortcuts.

you are viewing a single comment's thread
view the rest of the comments

Spring Boot. I honestly think there is no faster DB-management then Spring Data - you literally make an entity, and then an interface, and just write findBookByAuthor_FirstName(String firstName).. and it will just be auto-implemented.

And after all this, it is not even some unmaintainable single-use code, you can actually build on top.

Frontend is a bit harder question, SSR is definitely the faster route.