←back to thread

Svelte 5 Released

(www.npmjs.com)
390 points begoon | 1 comments | | HN request time: 0s | source
Show context
simonsarris ◴[] No.41890040[source]
I love Svelte and use it for all my personal projects and all company projects (except strictly static sites are still built with just 11ty but I hate it and want to move off it).

But I'm going to wait a bit on v5 for the company, scanning all the issue headlines, it looks like there are a still a lot of unresolved edge cases: https://github.com/sveltejs/svelte/issues

As for my latest personal project, upgrading right now so I can help find more of those edge cases :D

replies(4): >>41890161 #>>41890321 #>>41890438 #>>41891804 #
taikahessu ◴[] No.41890161[source]
Definitely try Astro for static sites, I'm loving it!
replies(2): >>41890450 #>>41890520 #
akudha ◴[] No.41890450[source]
Do you think Astro would be good for a site with tons of data (graphs, tables etc)? Can it be used with db, user logins?
replies(1): >>41890965 #
1. chrisldgk ◴[] No.41890965[source]
Yes, yes and yes. It kind of depends what your project uses under the hood and what it depends on, but Astro is quite flexible with the frameworks it supports and for many things there’s a first-class integration that lets you just install support for certain libraries and frameworks (for example Tailwind, React, Partytown, certain CMSes) with one command.

For DB and user logins, you might have to run in SSR mode to be able to do server-side stuff, but you can certainly build API routes, server middleware and interact with cookies for user token stuff.