Тёмный

Svelte 5: Introducing Runes... with Rich Harris 

Svelte Society
Подписаться 23 тыс.
Просмотров 94 тыс.
50% 1

Опубликовано:

 

8 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 550   
@immaterial_vivi
@immaterial_vivi 11 месяцев назад
I liked the part where he said "It's svelting time!" and svelted all over the code base
@asatorftw
@asatorftw 11 месяцев назад
The fact that I can now use reactivity in normal js/ts files alone is pure gold! YES!!!!
@kasper_573
@kasper_573 11 месяцев назад
In what way are svelte files normal js/ts files?
@Karakatiza666
@Karakatiza666 11 месяцев назад
@@kasper_573 runes can be used in js/ts
@kasper_573
@kasper_573 11 месяцев назад
@@Karakatiza666 runes can be used in svelte files. Calling svelte normal js is just plain ignorant. It’s the same whitewashing bs as with ”react is just js” all over again. I think svelte is great Because it has extended js with great features. If I wanted to use normal js, guess what I would use? Normal js!
@boi8240
@boi8240 11 месяцев назад
​​@@kasper_573What... Svelte adds a compile step to ts and js that makes runes work. All it does is offer the convenience of Svelte's reactivity outside Svelte components. It just removes the distinction between svelte stores, ie: reactivity outside components, and in-component bindings, which have a whole different logic.
@nothappyz
@nothappyz 11 месяцев назад
​@@kasper_573 they are clearly talking about the compiled js
@Daktyl198
@Daktyl198 6 месяцев назад
At first I was extremely wary, and felt like it was ruining the entire purpose of Svelte. But the more I used it, the more I realized how much easier many things are, and the syntax remains minimal and elegant. Truly amazing work by the team.
@DavidMulderOne
@DavidMulderOne 11 месяцев назад
It moves away from what svelte originally tried to do, because it turned out that it was impossible/harder than expected, and this totally seems like a step in the right direction 👍
@lintendo100
@lintendo100 11 месяцев назад
Looks amazing! I really hope we'll get some proper official devtools with component inspector soon. That's the one thing I'm missing from Vue :)
@dv4able
@dv4able 11 месяцев назад
+
@MrVauxs
@MrVauxs 11 месяцев назад
Doesn't the Vite Inspector do the job?
@TayTayChan
@TayTayChan 11 месяцев назад
@@amirhosseinahmadi3706 The "old" behaviour hasn't actually changed, has it?
@VaelVictus
@VaelVictus 11 месяцев назад
​@@amirhosseinahmadi3706Rich directly said in the video that he wants to emphasize that things are not changing. Nothing was lost. They're only adding new.
@jalalle1995
@jalalle1995 11 месяцев назад
@@amirhosseinahmadi3706 how? isn't the goal of signals to enable fine grained reactivity?
@xbsidesx
@xbsidesx 11 месяцев назад
Looks like you're helping people transition from React a lot smoother. I embrace the idea. The "rune" name is... well, it's fun and it helps remembering. All in all, big props for svelte. I hope I can use it in the near future in my paid job.
@MagicNumberArg
@MagicNumberArg 11 месяцев назад
If you are coming from React - SolidJS is a much better fit. Signals from the very beginning and flexibility of JSX.
@xbsidesx
@xbsidesx 11 месяцев назад
@@MagicNumberArg Its ecosystem is not wide enough in my opinion. Also, I tried to work with a simple websocket once and it was really hard. Hopefully it's better now.
@MagicNumberArg
@MagicNumberArg 11 месяцев назад
@@xbsidesx Solid's ecosystem is very robust. The reason why it might seem smaller than React's at times is because a lot of things are already built into it. For example, you dont have a dozen state management libraries to choose from for SolidJS, but only because the optimal store solution is already built into it's core.
@thienhuynh7962
@thienhuynh7962 11 месяцев назад
@@MagicNumberArg I think he's comparing solid's eco system to svelte's tho
@pickavana8056
@pickavana8056 18 дней назад
did you mean big $props? Intentionally or not, it does appear that this is smoothing the way for a move from React.
@docmars
@docmars 11 месяцев назад
Looking awesome! I can't help but to point out: Svelte React 1. $state = useState 2. $derived = useMemo 3. $effect = useEffect 4. $props = usual props destructuring at the function args level I think this will attract a lot more people from the React community and benefit from Svelte's other goodness!
@Viviko
@Viviko 11 месяцев назад
Probably more on the lines of Solid, given it uses Signsls which Solid popularized. It can be argued that the choice of names is similar to React. But that’s honestly where the similarities end.
@ReddSpark
@ReddSpark 11 месяцев назад
I'm newish to all this and trying to make a bet on where front end dev might be in a few years. If svelte is becoming more Solid/Reactlike , why not just stick to Solid/React?
@Hugos68
@Hugos68 9 месяцев назад
@@ReddSpark Because then you don't get to use svelte
@jnevercast
@jnevercast 9 месяцев назад
@@ReddSpark Keep in mind that these runes are compiler macros, rather than functions, so they can do a lot more magic behind the scenes to keep your code minimally reactive and maximally fast.
@marfagerland
@marfagerland 8 месяцев назад
Derived looked more like useEffect to me. Changing a value when a variable changes. Correct me if wrong though 😊
@seijiphirao
@seijiphirao 11 месяцев назад
Awesome! Seeing how these states patterns are starting to get implemented in various frameworks I would love to see someday a native solution similar to these runes, something like: let state counter = 0; let derived doubled = counter * 2; effect function(mouse) { last = mouse };
@JrgenKalsnesHagen
@JrgenKalsnesHagen 11 месяцев назад
Agreed, but if it's gonna be native there's no reason to keep "let" and "function": derived doubled = counter * 2; effect(mouse) { last = mouse }; looks a bit weird now, but I think it would look better with syntax highlighting
@Rtzoor
@Rtzoor 8 месяцев назад
@@JrgenKalsnesHagen look brilliant, i sure hope this will happen some day and we will be able to shed another layer of complexity from web apps
@cstrnt
@cstrnt 11 месяцев назад
Oh man, what a great job from the svelte team and also Rich is just a king at those videos. Short, informative and funny
@milesq
@milesq 11 месяцев назад
It looks sooo similar to what we have in react/solid/vue. In the past years all of those frameworks have become so similar that it is hard to see some true differences in DX
@joshua.hintze
@joshua.hintze 11 месяцев назад
Came here to say this. I’ve been a react developer for a long time and now it feels like I’m back in react. Need to digest if this is good or not.
@TunaCanGuzzler
@TunaCanGuzzler 11 месяцев назад
You can choose to not use it. The problem with react is the shadow Dom, not the 'reactive' feature set
@pozz941
@pozz941 11 месяцев назад
​@@TunaCanGuzzlerThat is not entirely true, I think that to many the performance are not the main reason they are using svelte. My initial interest in svelte was born because looking at the code was like looking at what html, css and js should have been all along. I really liked the magic of svelte and I wish they found a syntax that better reflected that. Maybe something like "state variable = 0" instead of "let variable = $state(0)"
@milesq
@milesq 11 месяцев назад
@@TunaCanGuzzler yeah, the same way I could choose to not use hooks and stay with react class components. So only theoretically
@raph151515
@raph151515 11 месяцев назад
I wonder if these "hooks" come with the same downside as react's one have (hook hell), svelte having a component instance scope, the context is completely different, the issue with hooks is that they often don't play well with non hook code, but they say avoid hooks if possible, so you end up never knowing how much hook to use, I hope svelte is not going in this direction@@joshua.hintze
@accexp
@accexp 11 месяцев назад
I watched some videos about Svelte 5 runes in the past couple of days and came across some negative reviews about this new mechanism. Including myself, I was initially confused about what this new mechanism was primarily designed to solve. So far, many videos I've watched introduced runes using `Counter` as an example, but using `$state` in such a simple example like `Counter` seemed to complicate things unnecessarily. It wasn't until I watched Huntabyte's "Don't Sleep on Svelte 5" that I got a preliminary understanding of the benefits this new mechanism can bring. In my opinion, runes currently lack real-world examples to convince people to try them out, and I hope to see more practical demonstrations in the future that address real problems, especially how it can make compliated code simple, rather than just using `Counter` as an example.
@LeonRadley
@LeonRadley 11 месяцев назад
This is going to be epic! All the things I found a bit weird about svelte can now be written differently. and the mental model being signals means jumping between angular, solid, svelte is also going to be easier. 🚀
@raph151515
@raph151515 11 месяцев назад
most of the use case don't require this addition and is simpler using svelte state, store are great, this addition shouldn't be overrated because you should still learn to work without for most of the cases.
@AmxCsifier
@AmxCsifier 11 месяцев назад
Brilliant. It's what svelte needs exactly. You guys are just brilliant!
@dethcx22
@dethcx22 11 месяцев назад
This was my biggest friction when trying out Svelte; Feels a lot more Vue like now with those primitives being available, and fixes the problem with reactivity outside of a component, excellent.!
@pjmq
@pjmq 11 месяцев назад
I haven't had the "Aha I get it!" moment yet but I'm hoping I get there. It's giving me rather nasty React vibes though so it would have been excellent to have an apples to apples comparison of how and why it's different from React's useEffects etc etc. in other to quell that uneasiness that I'm sure many people are having right now.
@isdeonf
@isdeonf 11 месяцев назад
It's normal to read "$state" and "$effect" and get memories from "useState" and "useEffect", but other than the word they share, they're nothing alike, not above the hood, not under the hood. And this new pattern enables Svelte to generate faster code, smaller bundle, reactivity in .js and .ts files... better derivated values than the problematic $:... it's a great tradeoff.
@WilsonSilva90
@WilsonSilva90 11 месяцев назад
@@isdeonf Even if they are nothing alike, it expands the API of Svelte, making it more complicated. Simplicity is key and JavaScript libraries tend to grow in complexity until they are no longer useful. That's why they are always being rewritten and that's why there's a new JS library every other day.
@LongNguyen-dh3bm
@LongNguyen-dh3bm 11 месяцев назад
@@WilsonSilva90 It is a bit more complicated than current Svelte, but everything should be more consistent, with reactive variables now represented by the same thing (runes), and uses the same syntax. Also speed is much faster due to the fine grained reactivity that it brings.
@crab-cake
@crab-cake 11 месяцев назад
@@WilsonSilva90 it's really not that much more complicated though. i think it's actually more clear and now we can use svelte behavior outside of svelte files.
@derschutz4737
@derschutz4737 11 месяцев назад
@@WilsonSilva90 it literally doesn't expand the api. the api is the same but just syntactically different. Instead of reactivity being an implicit property, it's explicit.
@chriss3404
@chriss3404 11 месяцев назад
YES!!!!!! This is exactly what svelte needs. I love writing new Svelte components because its almost always simple and intuitive to wire up my state and be done with it, but when refactoring time comes for complex, Svelte-specific code, everything takes 2-3x longer than it should because of those exact issues. So exciting!
@sadramohh
@sadramohh 11 месяцев назад
I really want to see Ryan Carniato's reaction to the new signals and runes
@semicognitive
@semicognitive 11 месяцев назад
Absolutely amazing. Loved being a part of this community for the past few years
@ethanreker3333
@ethanreker3333 11 месяцев назад
This is very exciting! Big thanks for all of the hard working devs who've made Svelte a reality! Several years ago when I first discovered Vue, I was blown away by how much simpler and flexible it was than other frameworks I had tried. It was my absolute favorite framework to work with and I evangelized it to every other dev I knew until... I found Sveltekit. I had the same feelings/experience towards it but maybe even stronger. I honestly cant imagine how it can get much more productive and clean that it already is, but it looks like your team is finding a way! Looking forward to the version 5!
@Huntabyte
@Huntabyte 11 месяцев назад
Let's goooo!
@enchart
@enchart 11 месяцев назад
Hype!
@harryickeringill2948
@harryickeringill2948 11 месяцев назад
Excited to see what this means for Melt
@daleryanaldover6545
@daleryanaldover6545 11 месяцев назад
​@@harryickeringill2948This is huge
@nooalovern
@nooalovern 11 месяцев назад
Time to make some new videos brah😅
@DEVDerr
@DEVDerr 11 месяцев назад
This video gives me strong React Hooks introduction vibes with this "rune" branding... which I'm not sure if I like. But if those "runes" will have even better DX (on top of already fantastic DX), then I will like it immediately. Hopefully the $effect() will not have the same pitfalls like useEffect() has
@gamerzone8876
@gamerzone8876 11 месяцев назад
This effect is signal based, unlike React, which runs after render.
@untlsn
@untlsn 11 месяцев назад
No, it good old signals If fact only react don't use this patter now days from bigger players (vue, angular, solid, qwik, preact) And I'm sure you will love it!
@cristianosoleti489
@cristianosoleti489 11 месяцев назад
Vue doesn't use signals@@untlsn
@danvilela
@danvilela 11 месяцев назад
It’s optional! But still, way better than reacts version
@jrmc732
@jrmc732 11 месяцев назад
The effect will have the same pitfalls if you are not careful and try to set a value inside the effect which at the same time is also used in the same effect.
@brandonculver8911
@brandonculver8911 11 месяцев назад
The first 3 minutes of this video is ironically the single most concise argument against Svelte I have ever seen. Runes look a lot better, but it also smells a lot more like Solid and React now tbh. Feels a little shark jumpy.
@chadelliott7629
@chadelliott7629 11 месяцев назад
For me, Svelte was 100% about the magic that the compiler does behind the scenes. Needing to be explicit about reactivity ruins that. Keep Runes as a power-user feature for complex projects, but save the joy and simplicity by continuing to support the simpler syntax that made Svelte so wonderful.
@geeksy2278
@geeksy2278 11 месяцев назад
This is true for small apps. For larger apps this is pure gold
@yestermonth
@yestermonth 11 месяцев назад
The simpler one will be deprecated sadly
@andybrice2711
@andybrice2711 11 месяцев назад
Maybe. But it's only a tiny bit of extra syntax, which helpfully highlights where the magic is happening.
@gamerzone8876
@gamerzone8876 11 месяцев назад
Finally, Svelte is adopting signals. 🎉 Those reactive statements gave me a hard time debugging
@MagicNumberArg
@MagicNumberArg 11 месяцев назад
Yeah, only took them 5 years...
@jakobsturm2438
@jakobsturm2438 11 месяцев назад
Looks slightly overwhelming at first glance but I believe that these are the correct changes for the future of Svelte
@sherwinbangs
@sherwinbangs 11 месяцев назад
I chose Svelte for simplicity but now it's starting to look like React and I'm terrified
@CottidaeSEA
@CottidaeSEA 11 месяцев назад
@@sherwinbangs No dependency arrays present, so seems fine to me. I am concerned about using $effect for onMount functionality though. That does not at all seem healthy.
@ISKLEMMI
@ISKLEMMI 11 месяцев назад
@@sherwinbangs It's looking more like SolidJS and (thankfully) not React.
@vaisakhkm783
@vaisakhkm783 11 месяцев назад
​​@@sherwinbangsikr... just $: feels soo good
@kylerjohnson988
@kylerjohnson988 11 месяцев назад
@@CottidaeSEA Why doesn't it seem healthy to you? Aren't life cycle functions like `onMount` essentially effects themselves?
@sadramohh
@sadramohh 11 месяцев назад
Svelte finally embracing signals brings a smile on my face :) Signals for the win!
@mendodev8775
@mendodev8775 11 месяцев назад
I'm really happy about the new `$props` rune. The current way of exposing props was not intuitive to forward implicit props with type safety (like all the html attributes for a simple button). Congrats to the whole team, looking forward to try this out! It looks great 🔥
@Pavel-wj7gy
@Pavel-wj7gy 11 месяцев назад
I'm still waiting for the $LayoutEffect rune too
@Dev-Siri
@Dev-Siri 11 месяцев назад
I agree. before I had like so many complicated hacks, type assertions and rest operations just to make a customizable button, but now it looks like it is more like React which I think is honestly for the better. I think the way JSX frameworks like React handle props with an object, are better for reusable UI components like buttons because you can destructure what you want, and spread the rest. Currently, in one of my Svelte UI components, there are so many hacks I did just to get type-safe props and use some custom props the way I want to.
@MrBlackhen
@MrBlackhen 11 месяцев назад
the current way is just `export let count: number` and it's type safety?
@Manish___Choudhary
@Manish___Choudhary 11 месяцев назад
It's my personal opinion, Runes just ruens the developer experience. I love only that Props rune.
@untlsn
@untlsn 11 месяцев назад
In small components yes But for bigger components and "hooks" it's will be much better
@mormantu8561
@mormantu8561 11 месяцев назад
Looks pretty great at first sight. Providing a more advanced reactivity model for those who need it based on signals. Which are, as others mentioned, also used in other frameworks. Seems like a really solid choice. Props to the developers!
@peepeepoo3432
@peepeepoo3432 11 месяцев назад
I'm so happy about $props. Also I would like to point out that you talked about the performance problems in #each blocks but you don't show how the runes model fixes it. I assume Svelte 5 will use fine-grained reactivity a-la Solid, but at least mentioning it would have been nice.
@daviidon
@daviidon 11 месяцев назад
It's using signals. He showed it in the generated output.
@shrin210
@shrin210 11 месяцев назад
Like Steve Jobs, he is marketing genius 😂
@alwayzsmarter
@alwayzsmarter 11 месяцев назад
You once again solved problems before i experienced them. Ill thank u in a couple weeks once this sinks in!!
@PierreLebrunAnthony
@PierreLebrunAnthony 11 месяцев назад
Nice! As a daily Vue user this feels very comfortable - similar functionality to the composition API (I especially like how computed/derived values are made explicit with a special keyword) but better ergonomics enabled by the compile time approach.
@bauxite13
@bauxite13 11 месяцев назад
Playing around with it, I'm really glad that using runes in a separate file and then importing it does NOT turn the whole component into rune-mode, which is really nice!
@katywings
@katywings 11 месяцев назад
SolidJS for Svelte, nice! 😄
@jengstrm2
@jengstrm2 11 месяцев назад
Congratulations to Rich, the team, and all the BelieVers🎉it’s great to see the framework simplify the complexity around rendering modern UI. It seems like a real step forward.
@user-sv5gt1lo3b
@user-sv5gt1lo3b 6 месяцев назад
As someone just learning Svelte, I'm pretty excited to see the props rune usege here. I always found it weird to wrap my head around the 'export' statement within a child component, when in my head it felt like it should have been an 'import' statement.
@vutruong4164
@vutruong4164 11 месяцев назад
Holy cow! So Svelte is also joining the Signal party after Solid, Qwik and Angular made Signal their state management and reactivity primitive. At this point, Signal should just be included as a Javascript primitive already. And the creator of Signal should receive a Nobel Peace prize for making all the frontend frameworks AGREE on a common state mgmt and reactivity model
@Psy45Kai
@Psy45Kai 11 месяцев назад
*caugh * Qt *cough *
@thehibbi
@thehibbi 11 месяцев назад
Bless you, that was a loud one!
@vitiok78
@vitiok78 11 месяцев назад
So... This is Vue 3 now? Only compiled?
@CottidaeSEA
@CottidaeSEA 11 месяцев назад
I am slightly concerned about $effect being used as onMount behavior. Exactly how does that work?
@xazzzi
@xazzzi 11 месяцев назад
Also concerned about it, onMount runs once, effects - whenever deps change, not the same.
@CottidaeSEA
@CottidaeSEA 11 месяцев назад
@@xazzzi Yeah, it's dangerous since it all depends on what happens inside of the effect. Since onMount isn't going anywhere, using it is not really a problem, but I've used React enough to know that the reliance on useEffect is detrimental. You can't avoid side-effects, but being able to better control when and why things happen is incredibly important and React only recently added an experimental feature for that purpose. In the case of React, the issue is moreso the fact that they have a dependency array though.
@iamnoone3588
@iamnoone3588 11 месяцев назад
this update is giving me react vibes but weirdly enough i kinda like it 🤣
@xazzzi
@xazzzi 11 месяцев назад
1. What if derive does not hit dependencies .get? Ex: it's under if branch. 2. How do i ignore some dependencies that shoud not trigger recalc? I used $: fn() with explicit dependencies often for this exact purpose. 3. Does it mean svelte compiler should now run in all files to detect/compile runes? It looks like mobx tbh.
@readDocs
@readDocs 11 месяцев назад
It look interesting because what makes Svelte enticing is what's under the hood (compiler etc.) The Rune syntax looks closer to React, which might help people to try out Svelte!
@shrin210
@shrin210 11 месяцев назад
Nope, React crowd will choose Solidjs just bcoz of JSX 😂 I think Svelte got even more cluttered with derived and effect.
@JViz
@JViz 11 месяцев назад
It looks like you're replacing the "special" code and syntax with monads. This definitely feels like a good direction. Thank you for the update and I look forward to using the improvements.
@_fayeznazzal
@_fayeznazzal 11 месяцев назад
Amazing! I think Runes will have great impact on Svelte the same way hooks impacted React, it helps people learn those tools way easier.
@HeatingUpDuke
@HeatingUpDuke 11 месяцев назад
Not gonna lie, 5:41 was exactly my reaction at first but thinking about it I think it's the right decision. Can't wait to try it at home. Congrats to the team for the awesome work as always!
@davidsiewert8649
@davidsiewert8649 11 месяцев назад
Hurray, finally we have react hooks in svelte! People, rejoice!
@artneo7
@artneo7 11 месяцев назад
Svelte is the best, great news for the community! 😄
@aldanasjuan
@aldanasjuan 11 месяцев назад
I've fixed the first problem by passing the variables to the $: statement, like so: $: doubled = doubleCount(count){...}, the compiler reruns that statement and function when count changes, no store needed and the function remains simple. You can even ignore the arguments passed into the function if all you need is to rerun the function when that 'count' changes. That being said, I love the idea of not losing sync with other functions and being able to use runes in .js modules. All the other stuff looks like sugar too.
@sadkebab
@sadkebab 11 месяцев назад
This fixes most of the issues I had with adopting Svelte on a larger scale in my projects. I really can't wait for Svelte 5 to come out.
@hoelldrio5881
@hoelldrio5881 11 месяцев назад
'Good luck catching us now' 😂
@heisenballs
@heisenballs 11 месяцев назад
Was on the fence about using svelte for a new project, but now I'm definitely gonna do it!! Thanks for all the hard work Rich!
@andrewcraswell4117
@andrewcraswell4117 11 месяцев назад
The cutaway to Planet of the Apes was the laugh I needed this week xD I'm also loving this change. Less magic, more explicit. This will be easier to learn and grok for both novices and experienced devs alike.
@milomoisson
@milomoisson 11 месяцев назад
I can think of Runes kind of like references in Rust. You can either choose compile-time references (similar to Svelte compiled values) or choose to use runtime check references like `Rc` or `Arc` (similar to Runes).
@Milky____
@Milky____ 11 месяцев назад
I can't explain how excited this makes me, never thought code could make me feel this way 😊 Ty Mr.Harris!
@Sefriol
@Sefriol 11 месяцев назад
I think these were the primary gripes why I preferred Vue over Svelte. Especially the mind games that you had to play when dealing with Svelte vs TS/JS files. I hope to try Svelte 5 in my next project soon!
@dellaian
@dellaian 11 месяцев назад
Well done. My state machines will benefit from these changes
@baka_baca
@baka_baca 11 месяцев назад
Hold on, it only took me a few hours to feel comfortable with Svelte and now it's going to be even easier... sign me up! Also, calling them runes is just amazing. Cheers, Rich!
@eriknyk2k
@eriknyk2k 11 месяцев назад
I love it, svelte 5 makes svelte features elegant
@jooooo9572
@jooooo9572 7 месяцев назад
THank you for providing me with this tool so I can create high end websites.!
@Dev-Siri
@Dev-Siri 11 месяцев назад
never have I been so excited for a JavaScript framework before.
@shrin210
@shrin210 11 месяцев назад
🤢
@Dev-Siri
@Dev-Siri 11 месяцев назад
​@@shrin210 what's there to be disgusted about?
@shrin210
@shrin210 11 месяцев назад
@@Dev-Siri Javascript framework itself, even svelte couldn't get it right in first try with all the past experience of other framework. And cluttered even more with derived and effect.
@Dev-Siri
@Dev-Siri 11 месяцев назад
​@@shrin210 I see nothing wrong with that. The old reactivity model will probably get deprecated and removed in future versions of Svelte just like how React is close to removing class components. but for now, I think its pretty solid. it gives us time to migrate which is simpler than ever and the new APIs make more sense in my opinion instead of implicitly guessing that _this variable is state and this is normal_
@shrin210
@shrin210 11 месяцев назад
@@Dev-Siri Reactjs doesn't have class components for 3 years now I think. Aahhh ha, old reactivity model is useless that's how Reactjs introduced new features and everything is deprecated now. Now, Under 1 year after Sveltekit creation and usage, already features are getting deprecated, beating record of React Class with hooks 😂 Hopefully, people didn't shipped any projects in old svelte. AND this should not be NORMAL.
@CodyCasterline
@CodyCasterline 11 месяцев назад
The $state rune seems a bit like signals in Preact, and $effect seems like React's useEffect(). I'm interested in hearing lower-level details about how they differ. (We're not ending up w/ the React problems of having to make sure all your use*() functions are called in a reliable order, for example, right?) Also: How much of their functionality is handled by the Svelte compiler vs. just implemented in pure JS at runtime?
@tonystroemsnaes554
@tonystroemsnaes554 11 месяцев назад
use*() function equivalents in svelte will not have to be called in order. I'm react, this happens as a consequence of the component lifecycle (all the code for a component is rerun on each render), but since svelte uses signals, that won't be needed. This is the same way vue works
@tedspens
@tedspens 11 месяцев назад
Thank you and the Svelte team for making web development awesome. Looking forward to 5 and Runes! 👍
@annismonadjem6901
@annismonadjem6901 11 месяцев назад
Can't wait to get my hands on Svelte 5! Bravo Rich and Svelte team! Great job! Thanks.
@ulvidamirli2758
@ulvidamirli2758 11 месяцев назад
At first glance, I was a bit worried of syntax changes. But then I saw that this is better choice for the future of Svelte. Both in terms of easier adoption and scalability of the apps.
@patricknelson
@patricknelson 11 месяцев назад
Also can’t wait to learn more about the speed improvements too. 🚀 Excited for the future.
@thanhdatvo0
@thanhdatvo0 11 месяцев назад
Beautiful, beautiful. Great work. Thank you, Rich!
@aabluedragon
@aabluedragon 11 месяцев назад
Absolutely love Svelte, and SvelteKit. Keep it up Rich and the team!
@coffee-is-power
@coffee-is-power 11 месяцев назад
This changes... EVERYTHING! I've written a lot of spaghetti code in svelte because there was no way to do better, but this will significantly improve the way i write and design code in svelte.
@b1ting375
@b1ting375 11 месяцев назад
dev: shows you a beautiful, awe-inspiring new world also dev: you can't install it yet. we don't have a release date.
@ivanjermakov
@ivanjermakov 11 месяцев назад
This is why I love SolidJS.
@xylemutopia
@xylemutopia 11 месяцев назад
As a senior React dev, I’ve been getting really interested in svelte lately. Only just started looking into it this week! This has me even more excited! Going to build a project this weekend!
@leopb21
@leopb21 11 месяцев назад
Awesome! Much more intuitive way to create and reuse pieces of logic for different components.
@X85283
@X85283 11 месяцев назад
Rich Harris and I have the same folding table? WOW. Honored.
@PhilipAlexanderHassialis
@PhilipAlexanderHassialis 11 месяцев назад
Picked my interest? Picked my interest???? This.... this changes everything. I was always a fan of Svelte and what it does for web dev. Keep going like this and you got yourself another evangelist. Huge thanks to you and the rest of the dev team, hats off sir!
@MattHeslington
@MattHeslington 11 месяцев назад
"piqued my interest". But yes, it does look fantastic
@seufx
@seufx 11 месяцев назад
Looks like Cleanup. Love it!
@yegorzakharov8514
@yegorzakharov8514 11 месяцев назад
This has Vue 3 vibes, and im all here for it.
@superyngo
@superyngo 11 месяцев назад
Amazing!Nice Work!!!!
@ryan_roga
@ryan_roga 11 месяцев назад
I understand the need for this but, at the same time, I'd rather have a way to opt out reactivity instead of this secondary way to declare reactivity. It looks like janky Vue or React ,and completely undermines everything I liked about writing Svelte to begin with. I get that most of what I want to do will continue to work, but it plays at a fear I have had since the "+page" change in SvelteKit - big changes that I'm not really onboard with can and do happen in the Svelte ecosystem. I think I'm back to the Vue and Nuxt team for the foreseeable future. It's a hard thing to keep everyone happy and I totally get that. Maye in a few generations things will feel more refined and solid.
@JulioWandekoken
@JulioWandekoken 11 месяцев назад
Well, the $effect with the cb that is executed on the component unmount looks a little bit like the useEffect hook... I hope that similarities ends there... lol =P Either way, awesome stuff!
@antonkosov
@antonkosov 8 месяцев назад
You were like a brother to me, Svelte! I loved you! It was said that you would destroy the React/Vue, not join them!
@JoyofCodeDev
@JoyofCodeDev 11 месяцев назад
🔥
@hsdev
@hsdev 11 месяцев назад
$props to you and the Svelte team for this fantastic update 👏
@amirhosseinsoleimani5410
@amirhosseinsoleimani5410 11 месяцев назад
Big W man, I kinda prefer this new syntax. syntax of Runes is more similar to React and VueJs features which means those devs can learn svelte and migrate to it more easily and I like that they used signal mechanism for reactive states.
@JacoKok
@JacoKok 11 месяцев назад
Amazing that $props was exactly what I was missing from react.
@FabianVilersBe
@FabianVilersBe 11 месяцев назад
Great additions to this wonderful toolkit!
@brianevans4
@brianevans4 11 месяцев назад
This feels like it's getting closer to react... Thanks for making svelte, I love using it!
@Bobbyhiddn
@Bobbyhiddn 11 месяцев назад
I am now adopting svelte strictly for the wizard vibes. I already build all my tools with magic related names, so this is perfect.
@kipcrossing
@kipcrossing 11 месяцев назад
When can we use it? And will it come to SvelteKit? 😊
@erickmoya1401
@erickmoya1401 11 месяцев назад
YOU BLEW IT!!!. YOU BLEW IT!! Now, being serious. Makes me think the react babies will be more "welcomed" into svelte. I understand the move as good marketing and a move to make the svelte code better. I bet on you Rich.
@untlsn
@untlsn 11 месяцев назад
Not only react, but solid, vue and qwik too! In fact I (solid mainly) am very excited about that
@davemackintosh9617
@davemackintosh9617 11 месяцев назад
This looks like some great improvements. Well done to all involved!
@ducnhatphung
@ducnhatphung 10 месяцев назад
1. I can see that this is a big improvement seen Svelte 3. In Svelte 3, it's true that "the compiler automatically updates the UI for you" thing simplifies the code but you can't refactor your code into smaller chunks of functions or you will have to use "store" which is quite complex and it shifts me back to React. In Svelte 5, the new "$state" rune is similar to the functional programming approach. If you want to make some side effects, there's a datatype for it. In Svelte 5, the side effect that you want to make is to update view, the datatype for the side effect is a "$state" rune which is actually a view model. There must be some complexity when you convert between raw data to view modal (similar to other functional programming languages) but it's much more transparent than the "magical" thing that Svelte 3 have done. 2. The only problem that I concern about is that to make these things works, Svelte 5 will have to introduce developers with another kind of magic that the compiler does with runes. In Svelte 3, I have a lot of problem trying to explain with other people about how "export" and "let" keywords works. In Svelte 5, I suspect the same thing will go with how "$derive" and "untrack" functions work. Instead of focusing in plain JS, people have to figure out how the Svelte compiler makes "untrack" and "$derive" run behind the scene. I even doubt in how these runes works in JS and TS without Svelte compiler. It may make developers harder to work with other kind of tools and debugger for such kind of magic also. The same things has been done with React. The authors try to make thing simpler and attract more people by introducing people with a lot of new features and sugar syntaxes. But in reality, thing gone wrong and wild, the authors have to adjust it with many other explanations, features, videos and bug fixes which is much more complex. What developers have to do is shifting from features to features, trend to trend over and over again. I don't want to be pessimistic but for Svelte, five years time is a big deal. As developer, we must reflect on ourself seriously, see how the code we write affect to people to bring the best solution (maybe not the best but the sub-optimal solution). In the end, Svelte is a potential framework and Rich is really the thoughtful person on how the tool will move toward the developers and the community. And I really hope to see how Svelte could change developer life, many lives. Sincerely
@bryanleebmy
@bryanleebmy 11 месяцев назад
This is extremely exciting! It's been the biggest pain point for me, glad that it's being addressed!
@SiLiDNB
@SiLiDNB 17 дней назад
omg how did I not find this earlier ...
@1eikaramba1
@1eikaramba1 11 месяцев назад
i read the announcement, HN comment section and lot of other sources and felt a little bit dissapointed or rather confused. but watching this video actually convinced me that this might be a good direction and more easier in the future. i certainly would prefer the old syntax but i given the downsides the new way is certainly more powerful and easier to understand in terms of that it just works without any hassles.
@andreypanin2136
@andreypanin2136 11 месяцев назад
Can someone please explain when is `$effect()` supposed to run, how it's different from the reactive declarations in Svelte 4 and what makes it a replacement for `onMount`? Does the use of `$effect()` eliminate heuristic analysis of the variable names used within the function passed to the `$effect()`?
@realderek
@realderek 11 месяцев назад
I love this. I'll admit, I initially had the same reaction as Taylor from Planet of the Apes, but I warmed up to it really quickly. It was smart to start with some of the problems the current model poses. One question: does this get rid of the "myVar = myVar" pattern currently in Svelte?
@AlanDanielx
@AlanDanielx 11 месяцев назад
Lol i really hope that fixes it
@fabricatorzayac
@fabricatorzayac 11 месяцев назад
I couldn't wait for the moment when Rich says "It's sveltin time" and sveltes all over your codebase
@pevey
@pevey 11 месяцев назад
Rich: "We svelted all over your code base."
@alwayzsmarter
@alwayzsmarter 11 месяцев назад
"Counterexample...counter example (two words)"
@shapelessed
@shapelessed 8 месяцев назад
I tried React for a week. Then I ran screaming back to Svelte exactly because of the philosophy behind it. A good framework handles everything for you so that you can focus on your job, while allowing to dive deeper only when needed. React is everything but...
@hamm8934
@hamm8934 11 месяцев назад
Looks like I was right for sticking with Vue lol.
Далее
Rich Harris - What You Can Do For Your Framework
13:08
Мама знает где все документы
00:21
Пришёл к другу на ночёвку 😂
01:00
Svelte 5 is a beast, but is it worth switching?
37:55
i didn't know these Svelte tips
18:56
Просмотров 6 тыс.
Svelte 5 Surprised Me
6:06
Просмотров 66 тыс.
Why We Switched From Svelte Kit To Golang + HTMX
9:54
Svelte 5 Is A Triumph
22:04
Просмотров 64 тыс.
Svelte 5 is Bigger Than You Think
9:35
Просмотров 21 тыс.