Live data from Hacker News

Ask HN: Which full stack framework (NextJS, Remix, SvelteKit) would you use?

news.ycombinator.com

1–10 of 57 posts

Ask HN: Which full stack framework (NextJS, Remix, SvelteKit) would you use?

#1
And why? (Please do not answer with the usual "Use what you have most experience with" or "It depends on the use case")

Also what libraries/services do you prefer to use in combination? For example: -Auth -ORM/Db connector -Email -Deployment (VPS/Container...)

Re: Ask HN: Which full stack framework (NextJS, Remix, SvelteKit) would you use?

#4
I like nextjs deployed on vercel but am not a big fan with the new direction of next so open to other frameworks. The other libraries I tend to change up depending on use case or what I want to try out. (this is mostly for basic crud/LLM wrapper apps)

Re: Ask HN: Which full stack framework (NextJS, Remix, SvelteKit) would you use?

#5
I would recommend to not use a framework at all. I usually maintain legacy projects and modernize them for my clients. Whatever you feel is the latest shiny thing will be the legacy horror of tomorrow.

If I’m free to decide the tech stack it is HTMX with a backend technology that suits the business case. For web related work I usually choose Node.js and fastify without template engine. It’s fast and easy going.

Re: Ask HN: Which full stack framework (NextJS, Remix, SvelteKit) would you use?

#6
VueJS - syntax is very simple, you can start using it by importing it in tag, or you can set up a full dev environment with vite, you can use vue dev tools plugin in chrome. It also has a very simple state management system as well as an event bus, if you want to go that route. and for backend - fastapi. i never found those "all-on-one full stack" frameworks to be usable.

Re: Ask HN: Which full stack framework (NextJS, Remix, SvelteKit) would you use?

#8

None. I just use react and express. Does everything I need. I don't use ORMs, I write my queries in sql files. Deployment I use github actions or jenkins.

The problem with writing raw queries is that you don’t get that sweet sweet type checking
Post reply on HN