5 reasons to love Solid

5 reasons to love Solid

Awesome

2 года назад

13,945 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@lutfiikbalmajid
@lutfiikbalmajid - 23.12.2022 17:19

Started to loved solid, when someone in twitter give performance review.

Ответить
@ashleyfreebush
@ashleyfreebush - 23.12.2022 17:31

It seems slowly solid will overtake react. I think it lacks support with libraries such as material ui, but once that is achieved i would say it will be no.1

Ответить
@TheSaintsVEVO
@TheSaintsVEVO - 23.12.2022 18:14

Nice video. One major annoyance though - don’t keep changing the code on screen as you’re explaining it, as it makes it much harder to follow

Ответить
@jitxhere
@jitxhere - 23.12.2022 21:48

While react is technically good, I would love to see other frameworks gaining popularity as they are shipping less js and they are going for improved developer experience.
I tried Svelekit and it is awesome.
Will try solidjs.
Thanks for the awesome video.

Ответить
@ibrahimmohammed3484
@ibrahimmohammed3484 - 24.12.2022 03:38

honestly i wanted to try it seriously but svelte seems to be much more simpler and cleaner code

Ответить
@LetrixAR
@LetrixAR - 24.12.2022 04:31

You conviced me. I'm gonna give Solid a try.

Ответить
@TariqSajid
@TariqSajid - 24.12.2022 19:34

I've never known what a meta framework is. I appreciate how you put it plainly.

Ответить
@jhsloz3160
@jhsloz3160 - 02.01.2023 09:39

I'm really enjoying your solid videos, but would really appreciate timestamps

Ответить
@FilipCordas
@FilipCordas - 06.01.2023 19:31

If they only dropped the terrible functional approach this would be a better preforming version of knockout js. MVU is just a bad pattern hard to deal with it redux helps but having one gigantic state is so hard to work with and requires so much boilerplate code and dealing with immutable references is hard.

Ответить
@greendsnow
@greendsnow - 18.01.2023 08:24

Why bother. Svelte is 3KB and improves your life.

Ответить
@zickonezero
@zickonezero - 20.01.2023 16:28

👏🏻

Ответить
@adimardev1550
@adimardev1550 - 22.01.2023 07:12

i'd love solid and svelte personlay, however i have to force my self to stay in react for obvios reason. i really wish solid will replace reactjs someday.

Ответить
@pra9shinde
@pra9shinde - 25.02.2023 21:04

Hi bro, please do a performance comparison video on solid vs qwik.

Ответить
@pedrogouveiasousa
@pedrogouveiasousa - 04.03.2023 00:04

Very bad, very hard to a newbie to follow...

Ответить
@lazyh0rse
@lazyh0rse - 26.03.2023 16:22

I started using solid recently, however, it seems that signals are actually different from states.
I'm kind of stumbling across a wall in that I could not really find a good solution to this other than using switch element.
When I pass a signal to a component as a prop, if I update the signal it doesn't trigger a rerender of the component somehow.
For example, I need to make a switch button to invoke dark mode, but the components don't react to the signal. Even using createEffect doesn't get triggered. Which is weird.
I searched everywhere, tried every solution other than the switch element, nothing works. Using switch causes me to duplicate the same component for every change I make. It doesn't make sense.
The same solution works on react, but it doesn't on solidjs.

Ответить
@cooltune
@cooltune - 01.07.2023 11:47

Another framework? Considering all frameworks copy each other what's the point in switching once again. Just stick with the framework that uses terminology and syntax that fits your mind. Performance benchmarks are negligible facts in my book , cause if your app approaches benchmark level of workloads you're doing something very very wrong.

Ответить
@bigmistqke
@bigmistqke - 27.12.2022 01:40

I would be a bit careful with using map in solid's jsx (irl and in ur educational videos). Since there is no vdom, jsx translates directly to createElement-calls. so with your example it would re-create the html and remount all the components inside ur map-callback everytime 'members' change. That's the reason why there are control flow components like <For> and <Index> in solid.

Ответить