Ask HN: Which full stack framework (NextJS, Remix, SvelteKit) would you use?
21–30 of 57 posts
Re: Ask HN: Which full stack framework (NextJS, Remix, SvelteKit) would you use?
#22Earlier quoted context omitted.
The problem with writing raw queries is that you don’t get that sweet sweet type checking
This. I can’t live without Prisma anymore.
Re: Ask HN: Which full stack framework (NextJS, Remix, SvelteKit) would you use?
#23I 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)
> not a big fan with the new direction of next Care to elaborate?
Re: Ask HN: Which full stack framework (NextJS, Remix, SvelteKit) would you use?
#24I'd use https://leptos.dev because you can use a fully typed language (Rust) that is super fast in the backend and also in the frontend (see https://krausest.github.io/js-framework-benchmark/2024/table... )
Do you are anyone else have experience with this and can tell me how well it works in practice and if you hit limitations very fast, where you need to hack something to make it work?
Re: Ask HN: Which full stack framework (NextJS, Remix, SvelteKit) would you use?
#25I would recommend - https://create.t3.gg/ It uses the following, which as of late are pretty well know and common, so you can punch in your problems to stackoverflow, google, or chatgpt and get some pretty good answers. It uses: Nextjs (React), typescript, trpc (typescript rpc), auth, tailwind, and Prisma (ORM for sql and mongo) Though of course these could go out of fashion tomorrow, but I don't think the essential…
Isn’t trpc redundant now that next’s server actions are out?
Re: Ask HN: Which full stack framework (NextJS, Remix, SvelteKit) would you use?
#26Earlier quoted context omitted.
This. I can’t live without Prisma anymore.
I do like Prisma, but I find that for quite a few queries it's ridiculously inefficient - things like getting counts, or where you have to get 20 of some model with a bunch of relations - that I find myself using a lot of queryRaw calls. Apparently this is because it doesn't use joins at all, it's all done sequentially. For some of the stuff where I'm getting counts grouped by month it goes down from 20+ seconds to u…
Looks like there's preview support for joins now, so at least they are getting there...
Re: Ask HN: Which full stack framework (NextJS, Remix, SvelteKit) would you use?
#27I would recommend - https://create.t3.gg/ It uses the following, which as of late are pretty well know and common, so you can punch in your problems to stackoverflow, google, or chatgpt and get some pretty good answers. It uses: Nextjs (React), typescript, trpc (typescript rpc), auth, tailwind, and Prisma (ORM for sql and mongo) Though of course these could go out of fashion tomorrow, but I don't think the essential…
Re: Ask HN: Which full stack framework (NextJS, Remix, SvelteKit) would you use?
#28The loaders and actions for loading and updating data just makes sense. Server side rendering just makes sense.
Re: Ask HN: Which full stack framework (NextJS, Remix, SvelteKit) would you use?
#29I'd use https://leptos.dev because you can use a fully typed language (Rust) that is super fast in the backend and also in the frontend (see https://krausest.github.io/js-framework-benchmark/2024/table... )
2) is it production ready?
Re: Ask HN: Which full stack framework (NextJS, Remix, SvelteKit) would you use?
#30I feel like if, down the road, I decided to ditch a framework altogether, writing it in Svelte may help seeing as there are very,. very few framework specific elements in it. I may also be deluding myself.