Earlier quoted context omitted.
If you’re “compiling all possible changes” that’s a diff, right? If there’s no VD, what’s being diffed?
the question is not what, but when
Solid – A declarative JavaScript library for building user interfaces
81–90 of 178 posts
Re: Solid – A declarative JavaScript library for building user interfaces
#82This (and similar libraries) is the way forward. I joined the Svelte camp a while ago so I'm unlikely to try Solid anytime soon, but had I started with it I wouldn't complain, because the value proposition is the same: an abstraction which is runtime-inexpensive both in terms of CPU usage and bundle size.
I think, the "3rd Age of JS" [1] of frontend libraries are running directly in the browser without a build step. Like in the beginning. ES modules in the browser paves the way. Svelte and Solid are actually the pinnacle of the "2nd age of JS". [1] https://www.swyx.io/writing/js-third-age/
Re: Solid – A declarative JavaScript library for building user interfaces
#83Can this be used with things like mobx/mobx-state-tree? Absolutely having a blast with MST. Also, does lack of vdom mean a project like react-native could never really come from this?
Re: Solid – A declarative JavaScript library for building user interfaces
#84Re: Solid – A declarative JavaScript library for building user interfaces
#85"Using JSDOM or similar we can run Solid on the server" Doesn't sound very promising tbh.
I've been working in this area. Solid now has string rendering on the server without DOM emulation. I'm just one person so I went with what was cheapest first.
Re: Solid – A declarative JavaScript library for building user interfaces
#86Re: Solid – A declarative JavaScript library for building user interfaces
#87People loved React because of VirtualDOM. Now JS libraries advertise themselves based having no VirtualDOM. Can someone explain this to me?
Re: Solid – A declarative JavaScript library for building user interfaces
#88Is there dedicated DevTools support for Solid like there is for React, Vue, Svelte, and co.? If not, is there a convenient way to inspect state, props, and the component hierarchy?
Re: Solid – A declarative JavaScript library for building user interfaces
#89Earlier quoted context omitted.
I've been working in this area. Solid now has string rendering on the server without DOM emulation. I'm just one person so I went with what was cheapest first.
Nice, thanks for the quick reply!
Re: Solid – A declarative JavaScript library for building user interfaces
#90Is there dedicated DevTools support for Solid like there is for React, Vue, Svelte, and co.? If not, is there a convenient way to inspect state, props, and the component hierarchy?