Ask HN: If you are starting in 2024, what is the most productive solo dev stack?
61–70 of 98 posts
Re: Ask HN: If you are starting in 2024, what is the most productive solo dev stack?
#62Earlier quoted context omitted.
I spent hours researching the right Markdown to HTML renderer. Writing HTML by hand would've been faster. There's dozens of these frameworks and none are perfect.
Or use something like strapdown and let the client handle rendering. https://naereen.github.io/StrapDown.js/
My point was that if you count the time spent looking for the perfect renderer, HTML is faster and easier to write than Markdown unless you're writing a book. You just added another option someone has to spend time evaluating to the pile.
Re: Ask HN: If you are starting in 2024, what is the most productive solo dev stack?
#63Earlier quoted context omitted.
Or use something like strapdown and let the client handle rendering. https://naereen.github.io/StrapDown.js/
When I clicked that link I saw a flash of unstyled content, so that's immediately worse than HTML. My point was that if you count the time spent looking for the perfect renderer, HTML is faster and easier to write than Markdown unless you're writing a book. You just added another option someone has to spend time evaluating to the pile.
Re: Ask HN: If you are starting in 2024, what is the most productive solo dev stack?
#64Earlier quoted context omitted.
The official RCA is deprecated. Is there a fork you recommend?
NextJS does more than create-react-app, but you're not required to use all those extra features. You can use it to just escape the tedium of configuring JS tooling.
Re: Ask HN: If you are starting in 2024, what is the most productive solo dev stack?
#65Earlier quoted context omitted.
The official RCA is deprecated. Is there a fork you recommend?
Vite is the closest thing we have to a Create React App successor. It does most of what CRA did in its heyday, while subsisting on far fewer dependencies. Run `npm create vite@latest` and just follow the CLI prompts.
Re: Ask HN: If you are starting in 2024, what is the most productive solo dev stack?
#66Earlier quoted context omitted.
Vite is the closest thing we have to a Create React App successor. It does most of what CRA did in its heyday, while subsisting on far fewer dependencies. Run `npm create vite@latest` and just follow the CLI prompts.
someone told me about vite. ill try that out next. I switched to astro for a blog after giving up with nextjs, and it works pretty well for a blog. not sure about a front end app though.
Re: Ask HN: If you are starting in 2024, what is the most productive solo dev stack?
#67Earlier quoted context omitted.
Yet any one opinion is just that - one opinion. I find node easy and quick, and some of the ones in your easy list to be easy while others are time-consuming and odd. We're both right - it is all a question of what you are used to. So for someone just starting out, I agree - just pick one. You'll learn it, it is will make sense, you will be productive, and because you only know one thing everything else will seem wei…
> it is all a question of what you are used to. In a Dunning-Kruger kind of way? As in, without having the familiarity with other options, you can't recognize how slow and difficult it is?
Re: Ask HN: If you are starting in 2024, what is the most productive solo dev stack?
#68Note: I am mostly a back-end / SWE and mostly avoid JS, but I also have to admit that IMO that’s the best match with the authors goals.
Re: Ask HN: If you are starting in 2024, what is the most productive solo dev stack?
#69It really depends on what you're building, but Django is still undefeated for 95% of the things a solo dev will want to create. Everyone here recommends React, but all the interactivity usually doesn't add business value, just complexity and slowness.
Re: Ask HN: If you are starting in 2024, what is the most productive solo dev stack?
#70It looks like the answers are heavily biased towards “my favorite tool”. And don’t take into account what’s actually asked. For a person who doesn’t want to become an swe (e.g. working on a specialized area at a big company) and who is a newcomer the answer is simple: JS, period. Take Next.js and try writing something using SO, chatGPT, articles and books. Treat html , css as “will learn on the go when I need somethi…
Some of the answers are exactly what I've been trying to avoid. My only goal is being able to build my own stuff, I don't really care about kubernetes or scaling. I don't anticipate to have 1m active users with concurrency.
At the same time, I got a bit scared by React quite frankly and hence was only looking at Sveltekit. However you rightly pointed out, its still being shaped despite being similar to Next.js and seems like ideal for React devs who want to jump into more simplicity and "vibes" with DSL.
My only other consideration was Rails but for that one - the learning curve is even steeper.