Earlier quoted context omitted.
Wish I could afford vercel
Super generous free similar product is netlify... you get 300 build minutes per month, I've never even gone above their free tier haha
Ask HN: What would be your stack if you are building an MVP today?
211–220 of 736 posts
Re: Ask HN: What would be your stack if you are building an MVP today?
#212elixir/phoenix is the best platform for knocking out an MVP today. Its batteries included and has a frontend system called liveview that lets you write most of your frontend using elixir too. You get built in pubsub and websockets which are important for any new kind of software product. Users demand more interactivity and phoenix lets you do it and scale from day 1. Ecto is easily the best sql database library I've…
Holy smokes! I had no idea this project existed, and it just solves so many issues out of the box. I'm a backend/infra developer, and I had been dreading having to learn a new front end framework because the work flows just look hideous. This looks like I can sidestep most of that problem entirely.
Re: Ask HN: What would be your stack if you are building an MVP today?
#213.NET 7 & SQLite. Because I wouldn't need anything else. Also, it could potentially be my final stack depending on the size of my business & market. The current Kestrel web server implementation is extraordinarily fast (i.e. millions of requests per second fast). Vertical scaling isn't exactly a problem now that we have 2S servers with 256 cores (and beyond).
Have you found any good managed places to deploy modern .NET apps other than Azure? My experience is you can either use Azure, in which it's fairly abstracted for you but overpriced, or you can use something like DO where it's more reasonably priced but you have to handle everything yourself.
I don't think .NET has any specific implications regarding where the product is hosted. If you are referring to the Microsoft insight/Azure integration crap, we use 0% of that.
Re: Ask HN: What would be your stack if you are building an MVP today?
#214Earlier quoted context omitted.
If the backend, frontend, API and data layer are in Elixir, what's actually written in Rust?
At the core there is a custom crawler written in Rust, with the goal of eventually releasing it as an open source standalone application. But everything else, including scheduling the execution of this crawler, and parsing its output, is done on the Elixir monolith.
Re: Ask HN: What would be your stack if you are building an MVP today?
#215Regarding backend choices:
curl "https://news.ycombinator.com/item?id=34530052" | grep -i Django | wc -l
36
curl "https://news.ycombinator.com/item?id=34530052" | grep -i supabase | wc -l
17
curl "https://news.ycombinator.com/item?id=34530052" | grep -i rails | wc -l
28
curl "https://news.ycombinator.com/item?id=34530052" | grep -i node | wc -l
15
curl "https://news.ycombinator.com/item?id=34530052" | grep -i elixir| wc -l
14
curl "https://news.ycombinator.com/item?id=34530052" | grep -i phoenix | wc -l
7
curl "https://news.ycombinator.com/item?id=34530052" | grep -i fastapi | wc -l
7
For Frontend Choices : curl "https://news.ycombinator.com/item?id=34530052" | grep -i svelte | wc -l
9
curl "https://news.ycombinator.com/item?id=34530052" | grep -i React | wc -l
34
curl "https://news.ycombinator.com/item?id=34530052" | grep -i htmx | wc -l
15Re: Ask HN: What would be your stack if you are building an MVP today?
#216(disclaimer: I'm the guy in the Video :):):):):)
Re: Ask HN: What would be your stack if you are building an MVP today?
#217For an MVP the most important thing is to get the product ready, have early feedback and then iterate based on the response. After my extensive framework shopping of PHP/Laravel, Phoenix, Supabase, Directus, Kotlin+SpringBoot, I settled for Django+HTMX+AlpineJS for my side project. I could create a working MVP in a week and within 1 month I had most features up and running. I plan to host it on Oracle cloud (free tie…
Re: Ask HN: What would be your stack if you are building an MVP today?
#218I built Call Stacking ( https://callstacking.com/ ), a modern Ruby on Rails debugger, with Jumpstart Pro and 1.5 hours a night over the course of 4 months. We have four kids, host an exchange student, a new puppy. Our schedules are full . Nothing compares to the productivity of Ruby on Rails. Especially when coupled with a high-end template like Jumpstart Pro ( https://jumpstartrails.com/ ).
Re: Ask HN: What would be your stack if you are building an MVP today?
#219Re: Ask HN: What would be your stack if you are building an MVP today?
#220Earlier quoted context omitted.
I'm vaguely aware of htmx, but have never used it. Had not heard of hotwire until just now, but that looks really interesting. Thanks for the pointer! Would you care to say any more about your experience with Vue? I've heard a lot of good things about Vue and had it on my mental "things to learn one day" list for a while. Would be really interested in hearing any counter-points from somebody who hasn't enjoyed workin…
First I heard of HOTWIRE. I have been using PJAX for a decade now, which is a similar concept. I use .net mvc with a razor templating engine. But this can be used with any backend. It makes it super easy for me to maintain all my UX in server-rendered HTML templates. I get a clean SPA with super high development efficiency with MINIMAL javascript. The best part was I could hire any developer and they know how to work…