Earlier quoted context omitted.
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.
You could build a blog with Vite and @mdx-js/react, but that honestly might be overkill. Astro is definitely tailored towards the blog use case. Gatsby is another older framework that's oriented more towards building a blog, but I'm not a huge fan of how it insists on making you use GraphQL. Eleventy is another popular choice for JS powered static sites if you're not set on using React.
Ask HN: If you are starting in 2024, what is the most productive solo dev stack?
81–90 of 98 posts
Re: Ask HN: If you are starting in 2024, what is the most productive solo dev stack?
#82Re: Ask HN: If you are starting in 2024, what is the most productive solo dev stack?
#83Earlier quoted context omitted.
I agree with this sentiment. I know half a dozen or even a dozen programming languages (some more than others obviously) and my first project is almost always a web project. Not every language has a decent streamlined / full feature web framework (I really havent found one for Rust yet that has everything OOTB) so you have to build your own pieces (which I've done with CherryPy, though learning Django was a boost, im…
Have you tried Python.NET? (I am a co-maintainer) https://github.com/pythonnet/pythonnet
Re: Ask HN: If you are starting in 2024, what is the most productive solo dev stack?
#84Earlier quoted context omitted.
I gotta say, back when I worked in an old company they built a service for a client using Parse Server that still works great today, although nowadays it is fully self hosted. It has its limitations, but it’s a good abstraction for simple use cases, and it handles a lot of traffic without problems.
What do you mean by fully self hosted? Not on heroku? On a physical server? Some confuse it with Parse, which ran on their PaaS, before it was open sourced. I do like it as a middle "low code option" as opposed to the complex no code options like Wordpress or doing the whole stack to build something that might not even sell. Honestly, Firebase has caught up to it in development speed and documentation, but Firebase f…
Re: Ask HN: If you are starting in 2024, what is the most productive solo dev stack?
#85[1]: https://ivylee.github.io/
[2]: https://astro.build/
Re: Ask HN: If you are starting in 2024, what is the most productive solo dev stack?
#86I'll still keep shilling Parse Server + Parse Dashboard for back end. It's open source, it plugs into MongoDB, which is very scalable for when the day comes to replace it with something else. It has things like auth, password reset, cloud functions, etc built in, and there's tutorials for email adapters. It does much of the things you can do on Firebase, but easier and cheaper. Dealing with the DB is extremely easy t…
You might be interested in Pocketbase. Lots of overlap. It’s really good.
Re: Ask HN: If you are starting in 2024, what is the most productive solo dev stack?
#87Re: Ask HN: If you are starting in 2024, what is the most productive solo dev stack?
#88Part of my stack selection process these days is considering how well LLM tools like ChatGPT and Claude "know" the stack in question. Using libraries that have been around for a few years and have accumulated a lot of training data is a huge productivity boost here, because LLM tools can both write code that uses them and usefully explain and debug them when they go wrong. It's weird and a little uncomfortable to hav…
It might seem non-important to many, but I was writing a big amount of boilerplate code, tests, etc. and I have a feeling I would've been much more productive just sticking with C.
Re: Ask HN: If you are starting in 2024, what is the most productive solo dev stack?
#89I rebuilt my personal website[1] (static site) using Astro[2], and it was a pleasant experience. [1]: https://ivylee.github.io/ [2]: https://astro.build/
What do you use for more interactive / app like experiences?
Specifically I need to call external APIs to retrieve data, store it, and then call another API to send some of the adjust results in the body.
Re: Ask HN: If you are starting in 2024, what is the most productive solo dev stack?
#90React with Next.js (including API routes), Tailwind for styling, docker to containerise it, DigitalOcean to deploy it for cheap