Ask HN: What would be your stack if you are building an MVP today?
91–100 of 736 posts
Re: Ask HN: What would be your stack if you are building an MVP today?
#92And Bootstrap, if I'm feeling generous.
When you're trying to validate a product, the last thing you should be spending your time on is fiddling with anything more complicated than this.
Re: Ask HN: What would be your stack if you are building an MVP today?
#93Re: Ask HN: What would be your stack if you are building an MVP today?
#94Old school, but it works.
I keep that side of the stack simple because the front-end is ESP32/MicroPython/3D-printed-parts/aluminum-extrusions/lots-of-motors.
Re: Ask HN: What would be your stack if you are building an MVP today?
#95Django, in my previous role we did MVP websites for academics and the speed of getting a site up and running and deployed was just so fast. I’ve never worked with anything else that is as fast, anything like FastAPI or Flask or Express or similar either requires additional libraries to add really basic and common functionality or you have to roll it yourself. I personally don’t think that if you’re building an MVP yo…
Re: Ask HN: What would be your stack if you are building an MVP today?
#96Re: Ask HN: What would be your stack if you are building an MVP today?
#97Rails 7.1 w/ Tailwind (esbuild, not import maps) Postgres DaisyUI for Tailwind UI components View Components for Ruby Nothing particularly "hot" but there are some newer tools
Post MVP, the only thing I'm looking to change is potentially replace a very heavy data analytic background job with a Crystal version of it. Will be super easy to port, and since I'm using Sidekiq, I'll drop in Sidekiq.cr and thus won't need to make any other system changes.
I'm thrilled about it, it's taken a month to go from zero to everything working and I'm just tidying up the marketing site
Re: Ask HN: What would be your stack if you are building an MVP today?
#98Re: Ask HN: What would be your stack if you are building an MVP today?
#99Re: Ask HN: What would be your stack if you are building an MVP today?
#100Personally big on Rails (use it at work every day). But, my last MVP I did with TS/Next/Mantine/Supabase/Vercel. Reasons: - I've been using Rails as an API only, so having to grok views felt like a waste. My React skills made me feel that learning how to make complex views in my backend was a waste of time. - One type of bug I hate is ensuring my API calls have the right schema. With Supabase and TS in the frontend,…
With the stack you can use the same language, DTOs, libraries, etc.. both server and client side.
Server side rendering ensures a graceful handoff between server rendered state and the resulting app state on the client.
I’m also using MUI which includes all the components you need for a front end app.
I also just really like react/JSX, very strongly typed coupling between the html and JavaScript. Makes it very easy to refactor and pull out new components with confidence.
I really think this is the best stack for an MVP CRUD app right now. Interested to hear of anything better.