Ask HN: Which full stack framework (NextJS, Remix, SvelteKit) would you use?
11–20 of 57 posts
Re: Ask HN: Which full stack framework (NextJS, Remix, SvelteKit) would you use?
#12Re: Ask HN: Which full stack framework (NextJS, Remix, SvelteKit) would you use?
#13None. 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
Re: Ask HN: Which full stack framework (NextJS, Remix, SvelteKit) would you use?
#14Re: Ask HN: Which full stack framework (NextJS, Remix, SvelteKit) would you use?
#15It 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 idea behind these libs and frameworks are that wacky, unique or unordinary.
Prisma ORM, is a little opinionated, and you could swap it out for Drizzle, which is basically typescript side sugared SQL.
TRPC might be also be a little sticky because it is tied to typescript, this is the tradeoff for the buttery smooth coupling for the fullstack experience. I think there exists a typed-rest solution out there, but haven't used it.
Personal anecdata, I used this stack for a little hobby project and it was FUN.
Re: Ask HN: Which full stack framework (NextJS, Remix, SvelteKit) would you use?
#16Svelte would be my vote. I don't like all the hoops Sveltekit is jumping through. I just want to compile ahead of time and get a bunch of dumb static files I can host somewhere. It's sad watching them move away from that.
Re: Ask HN: Which full stack framework (NextJS, Remix, SvelteKit) would you use?
#17I 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?
#18Re: Ask HN: Which full stack framework (NextJS, Remix, SvelteKit) would you use?
#19None. 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
Re: Ask HN: Which full stack framework (NextJS, Remix, SvelteKit) would you use?
#20I 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)
Care to elaborate?