Live data from Hacker News

SvelteKit 1.0

svelte.dev

21–30 of 296 posts

Re: SvelteKit 1.0

#21
Perfect timing!

I literally started working on a project in Svelte after spending like two afternoons trying to do it in React.

Svelte is such a God send. So much simpler and powerful than React. Not to mention the fact that React only handles the UI layer but is too unopinionated w.r.t. the application architecture.

Re: SvelteKit 1.0

#23
While the breaking changes were rough this year, the new structure is a huge improvement over before. It is now extremely clear the order that items are loaded, and what is loaded on the server vs client. Form actions are also amazing.

Congrats to the team and thanks for all the hard work!

Re: SvelteKit 1.0

#24

Congratulations to the team for releasing this. For someone who hasn't followed svelte closely, How much JS sveltekit ship by default using SSR

its up to you - you can ship 0 kb of js if you want by turning off client side rendering https://kit.svelte.dev/docs/page-options#csr

and you have this choice on a per page basis rather than having to choose between a static site generator or a full SPA

Re: SvelteKit 1.0

#25
Been using Sveltekit and love what the community has done to the framework. Makes life of a developer very straightforward and I'm sure that Sveltekit will rise to be a dominant frontend framework soon.

Re: SvelteKit 1.0

#26
I'm just completing a job using svelte/kit, tailwind, postgres, typescript.

Actually, I was new to the entire stack, but it went smooth as butter. (Though I have plenty of experience with JS, HTML, CSS, other databases, etc.)

IMO, svelte and sveltekit are well designed and have a great dev experience.

LOL, as I was writing this he was apologizing on the stream for the breaking changes. That was a bit of a pain, but not really that bad. My only real gripe is using folders to organize both layout hierarchy and route hierarchy is going to turn out to be a mistake.

Re: SvelteKit 1.0

#27
This is how I move fast and break nothing. By having fullstack type-safety from database all the way to the frontend with auto-completion. My current stack:

+ SvelteKit (could be Next, Nuxt, Solid or any other TypeScript framework)

+ tRPC (typed calls between frontend and backend, https://trpc.io)

+ trpc-sveltekit (glues SvelteKit and tRPC, https://github.com/icflorescu/trpc-sveltekit)

+ Prisma (ORM, https://www.prisma.io)

Re: SvelteKit 1.0

#28
There is so much "let me just see if this works..." tap tapppy tap .... "no... NO WAY... OMG IT WORKED!" with Svelte.

Very little surface area. It embraces your knowledge of plain ole CSS/JS/HTML and empowers you with reactivity and a means of if being able to add motion to your ui.

Newbs and Pros alike can build fast with it. That speed + reactivity allows your software to better keep up with your converstaions that make it all so. Thats insanely powerful.

It's soooo good. Congratulations to Richard Harris and everyone on the Svelte/SvelteKit Team! <3

Re: SvelteKit 1.0

#29
Svelte is such a pleasure to write and work with. It follows my mental model really well. Congrats to the team on this amazing milestone!
Post reply on HN