TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Web app stack from scratch what technologies would you choose?

1 pointsby darosatiabout 5 years ago
Hey there, I am doing research into choosing a productive technology stack for a new product. It&#x27;s a web application.<p>I have mostly been doing go microservices and react UIs but the complexity of microservices and writing our own code for things that are not in our core domain such as identity&#x2F;authn&#x2F;authz or writing code for various communication layers just to do simple CRUD makes development very slow and expensive.<p>So what would you choose for a modern productive web app stack?

2 comments

joeclark77about 5 years ago
It kind of depends how big this is going to get. I&#x27;m using Java&#x2F;Spring&#x2F;Thymeleaf right now for an &quot;enterprise&quot; project but that has certain considerations: it may have a 20+ year long lifespan, it may in the future have to be worked on by inexperienced developers. So Java is a nice choice because it pretty much forces you to write self-documenting OO code. Spring Boot is good here because it has default implementations for practically everything (login, security, etc) and you don&#x27;t have to write custom code that someone will have to maintain. But it has a fairly long learning curve.<p>On the other hand I&#x27;ve used Python&#x2F;Flask in previous projects and that&#x27;s nice because it&#x27;s quick and easy. If you just want to write a few CRUD methods&#x2F;endpoints that are a thin web veneer on top of your database, and it&#x27;s for use by a small group of users, that&#x27;s much more &quot;productive&quot;. Quick to learn and start, and then you can add more functionality (like authentication) on incrementally when you need them.
verdvermabout 5 years ago
<a href="https:&#x2F;&#x2F;apollokit.org" rel="nofollow">https:&#x2F;&#x2F;apollokit.org</a>