Live data from Hacker News

Ask HN: What stack would you use to build a CRUD web app in 2018?

news.ycombinator.com

1–10 of 184 posts

Re: Ask HN: What stack would you use to build a CRUD web app in 2018?

#4
Depends on how complicated the app is.

Most of the times a good old non-SPA with NodeJS / Express / Some ORM with vanilla JS / Handlebars and SASS will do the job without having a huge technical debt.

If on the other hand the requirements are to have a more complicated SPA, I would go with React / Redux and a NodeJS / Express / ORM for the API. Hosting the front-end on an S3 and the backend on a Digital Ocean Droplet.

Re: Ask HN: What stack would you use to build a CRUD web app in 2018?

#6
I build lots of CRUD apps very fast with JHipster, which is designed to handle the initial bootstrapping of traditional CRUD apps very well, while also allowing you to choose your tech stack (in some ways). Because it's giving you a nice boilerplate, you can customize it as you go.

The stack ist mostly Java with Spring and AngularJS on the frontend.

http://www.jhipster.tech/

Re: Ask HN: What stack would you use to build a CRUD web app in 2018?

#7
The boring Java enterprise way, 2018 edition.

Back end: Java 9 JVM, Spring Boot web service, Kotlin, plain SQL via JdbcTemplate working with Kotlin data classes, Liquibase for DDL and migrations, Spring caching with redis if need be, Postgres, deployment via docker to AWS Fargate

Front end: Angular... but I’d like to try Vue. Nginx and docker to Fargate

Post reply on HN