Live data from Hacker News

Ask HN: What's the ideal stack for a solo dev in 2025

news.ycombinator.com

11–20 of 37 posts

Re: Ask HN: What's the ideal stack for a solo dev in 2025

#11
Depends what you’re doing, but I think these are sensible defaults:

HTML/CSS/JS won’t go out of style (could use templates like Askama, utility classes like tailwind to speed things up)

Axum is a nice option for backend because it’s much less buggy than the Python/JS stuff

Redis / Valkey for a KV cache

PostgreSQL database

Re: Ask HN: What's the ideal stack for a solo dev in 2025

#14

Django is the productive choice, choose it first and you won't have to reinvent it. Htmx pairs well, until you need something fancier. Postgres for data.

This is the correct answer. Pro-tip: use Django admin as a user facing interface in your prototype, then you won’t even need to write HTML templates, let alone client-side JS.

Re: Ask HN: What's the ideal stack for a solo dev in 2025

#16
I've recently been experimenting with Jumpstart Rails [1] in Cursor and it feels like a super power (coming from a generalist-but-mostly-spring-boot dev).

I'm really burnt out by the current state of JS, and the way rails 8.0 does server-side rendering feels like a complete breath of fresh air. The ability to just add slight JS functionality with stimulus and action cable seems like just the right level of abstraction for most web apps.

[1] https://jumpstartrails.com/

Re: Ask HN: What's the ideal stack for a solo dev in 2025

#17
RoR, because it’s what you know. If you know something else better, use that.

If you’re calling out to AI tools, you’ll likely use worker processes and these can be in whatever language you want.

Don’t fall into the trap of selecting the perfect stack. Just get started and iterate. You’re already working against the odds enough.

Re: Ask HN: What's the ideal stack for a solo dev in 2025

#18
post #2

As usual, isn't the next question... "What are you trying to build?" I build most projects in Elixir/Phoenix these days, but wouldn't flinch at ROR if you are comfortable with it.

>What are you trying to build?

Indeed. Not everything even has to be a "web app" in the first place.

Re: Ask HN: What's the ideal stack for a solo dev in 2025

#19
I'm very comfortably leaning heavily into "local first," and "persistence last" with vite, preact, and peerjs. I'm honestly looking into hono.js literally because of that meme video, and because I like the idea of workerd. But the more I look into building out a hono app, the more I miss Rails.
Post reply on HN