Это видео недоступно.
Сожалеем об этом.

Lit 3.0 Explained

Поделиться
HTML-код
  • Опубликовано: 18 июн 2023
  • A quick overview of the Lit library.
    💬 Topics:
    - The benefit of WebComponents;
    - What is the ShadowDOM;
    - Alternatives to JS Frameworks;
    - Working with Lit.
    #javascript

Комментарии • 162

  • @razt3757
    @razt3757 Год назад +96

    Don't get fooled, web components are not what they seem.
    Whenever someone brings up web components they conveniently always talk about markup and javascript and never speak of how css interacts with the outer world.
    There is no way for a web component to share css with other web components or even the parent page, because they live in a shadow dom.
    In short, you can't build a package of web component elements using, say for example bootstrap, without including almost the whole bootstrap library in each and every single web component.
    Also, afaik, data between web components and outside world is serialized both ways, am I wrong about that, I feel like remembering that to be the case, am I wrong?
    There is no way I'm going to ship that to an enduser.
    You are way better off using something like island architecture with Astro or similar platforms.
    And before you mention how web components is a new technology and needs time to mature, I remind you that they are older than react, web components were introduced in 2011, react in 2013, that's plenty of time to "mature".
    At least mention the drawbacks at some point in the video if you're gonna clickbait, no hard feelings hopefully.

    • @klaus_1083
      @klaus_1083 Год назад +90

      You can share CSS across shadow trees using constructable stylesheets.
      No, you do not have to ship the whole bootstrap library with every component.
      You dont need to serialize Data, you can always use property binding which does not rely on serialisation.
      You can build an "island architecture" type application wit lit because astro has first class integration with lit.
      Are you running some sort of anti lit agenda? lol

    • @awesome-coding
      @awesome-coding  Год назад +43

      Hey! Thanks for the feedback - no hard feelings :)
      You raised some good points, but also some aspects which were already addressed by @klaus_1083.
      I'm pinning your comment to the top of this video, since I believe you are right - I did a bad job explaining the cons of WebComponents.

    • @StevenHartgers
      @StevenHartgers Год назад +12

      "No way for a web component to share css", luckily they added "shadowroot adoptedStyleSheets", which focuses on shareability. Might do the trick for your needs

    • @adaliszk
      @adaliszk Год назад +5

      In my experience with Shadow DOM isolation, most authors promote a sharing design through CSS variables and parts. The variables to define the design tokens so that you can adjust the theme globally and parts to do any necessary overrides you may need for your use case.
      Big CSS frameworks like Bootstrap are not very popular with WC because the mindset is different; with each component, you have a very focused and minimal stylesheet because of the small scope you need to worry about.
      That is not to say you cannot share particular standard rules; quite often, those are encapsulated with layout components instead of doing it all with CSS modules you would need to bundle for your route or island.

    • @adaliszk
      @adaliszk Год назад +2

      Complex data is usually passed through properties and not attribute serialization; however, when your data is complex, it is very common that you don't actually use properties.
      When there is a lot of complex data to worry about there are usually two main approaches:
      1) Component Composition, where you break down your layout into smaller components expected to be passed into slots.
      2) Global state management, where you create a "Context," usually with a "smart" component, and everyone else just queries the data they need.

  • @sadboisibit
    @sadboisibit Год назад +29

    My favorite thing about the Lit project is that they don't force you to use Lit Element if you don't want it. I've been using the lit-html package (templating and rendering) with native Web Components since 2017.

    • @fopsdev3676
      @fopsdev3676 Год назад +3

      same here, using lit-html baked into custom elements together with my own state management solution (based on js proxies) ... i always try to keep the dependencies low and rely on browser standards as much as possible... well i don't like the scoped css thing but hey i don't have to use it :)

    • @giacomogagliano1526
      @giacomogagliano1526 Год назад

      @@fopsdev3676 sounds interesting, would love to connect and talk about it!

    • @AlexanderSuleymanovFX
      @AlexanderSuleymanovFX 10 месяцев назад

      Yup. It's been my stack for a long time. Hey, which transpiler/builder did you use to work with polymer components? Recently, I couldn't use them in my project since Gulp, webpack, Babel were complaining about @property syntax

  • @theklr
    @theklr Год назад +6

    Per usual appreciate the agnostic approach (unless flaming the state of Front End development). Love to see finally after a decade, we’re optimizing php and jquery.

    • @awesome-coding
      @awesome-coding  Год назад +4

      One of my next videos will be on creating a website with PHP and jQuery. I'm sure it'll get almost 0 clicks / views, but at least I'll have fun with it :D

  • @FlygOnLiTe
    @FlygOnLiTe Год назад +3

    I remember using polymer web components back in 2014.

  • @StiekemeHenk
    @StiekemeHenk Год назад +14

    I was forced to use Lit Elements by my education, now using React.
    My main gripe with lit elements, the shadow dom.
    I love that my components keep their tag in the HTML, I hate that about React, it all turns into default HTML and forces me to need React devtools to more easily see what's what.

    • @thekwoka4707
      @thekwoka4707 Год назад

      You can use arbitrary named custom elements, though react doesn't like them much.
      Those are valid in html.

    • @StiekemeHenk
      @StiekemeHenk Год назад +1

      @@thekwoka4707 yeah but I'm talking about runtime. I'd love it if React would just put my in the HTML as is.

  • @ryo_5748
    @ryo_5748 Год назад +4

    Wow! The moment I saw the thumbnail of this video, I was so excited! Thank you. And, as always, the content is of high quality.

    • @awesome-coding
      @awesome-coding  Год назад +2

      Glad you enjoyed it! Thank you for the kind words!

  • @adriancasillas8675
    @adriancasillas8675 Год назад +9

    Excellent. More, please.

  • @adaliszk
    @adaliszk Год назад +9

    The only thing that is really tricky still with Lit is HMR where you kinda need to generate a random element name to use and register. Otherwise I love using it ever since Polymer 1.5 or so.

  • @lihinfei8334
    @lihinfei8334 Год назад +10

    I've been using lit for a bigger project.. I like how it doing thing in a component perspective. But once you want to do thing like i18n, global state management (which very weird that they recommend using Redux...), and their context api which only be readonly for child...it is totally painful at the time. Not to mention the authentication part and ssr is still on experimental stage...truly reveal the lit lack of community support. For that said, building a component library using lit maybe a good choice, but not suggest to use for a fullstack project..

    • @awesome-coding
      @awesome-coding  Год назад +6

      I find the Redux suggestion weird as well. I think it would pair much better with a solution like NanoStores.
      i18n has little to no support in HTML in general, so I would expect it to be a mess in Lit (WebComponents) as well :(

  • @CodeByNumbers
    @CodeByNumbers Год назад +9

    We started using Lit for all our projects. We were all in with Lit and using Shoelace, but found it to have issues when compiling, would get random compile and runtime errors.The file size was 2-3x the size of other project and the dev experience wasn't all that great. We were creating wrappers to wrappers. IMO it is better to use components that were designed for the framework / library you are building your apps for.

    • @awesome-coding
      @awesome-coding  Год назад +1

      Interesting. Thanks for sharing the experience!

  • @shantanukulkarni007
    @shantanukulkarni007 Год назад +15

    One of the main reason to use webcomponents is building websites using only html/css/js and having component reusability. No npm/script bs and all. Adding something like lit defeats this purpose

    • @AlexSpieslechner
      @AlexSpieslechner Год назад +2

      exactly my first thoughts

    • @awesome-coding
      @awesome-coding  Год назад +14

      I agree with you. On the other hand, the standard way of building web components is fairly tedious / boilerplatey for today's DX standards.
      A thin layer on top of the WebComponents standard is something I can live with if I get access to decorators, the css and html helpers.

    • @rene78
      @rene78 7 месяцев назад +3

      You can add lit via a CDN.

  • @Diamonddrake
    @Diamonddrake Год назад +2

    I use Lit when working with home-assistant custom UI elements because its recommended borderline required (requires web components at least). I'm not sold on it, Seems fine but not notably better or worse than anything else I've used. Lit definitely makes dealing with the web component api a little more friendly though.

  • @vigneshwarrv
    @vigneshwarrv 5 месяцев назад

    I worked on polymer JS ( daddy of lit ) for almost a year. All I can say it really helps us creating reusable component creation. I remember creating a reusable gradient icon ( applies gradient colors to svg icons by dynamically injecting linear-gradient tag ), tabs, table, pagination components. but Problem arises when we try to bundle those definition files. importing all the definitions increases initial load and we have to do all sort of splitting to efficiently import those definitions right before their use.

  • @dickheadrecs
    @dickheadrecs Год назад +3

    love to see more on lit

  • @XCanG
    @XCanG Год назад +1

    I like Web Components and already using them, however I don't like one of their aspect: you can build them differently. I tried 3 different approach when building them and with that I don't actually know which one is better. Each time I create something new I have a train of thought "how I will write Web Component today?"
    And I can't really measure if one of the approach is better, than the other.

  • @jediampm
    @jediampm Год назад +3

    Hi, lit 3 is not full released, it is in pre-released like release candidate (RC), as it is mention in the Docs.
    Lit is a bit small then svelte and solid. Lit with ts is 5kb big in size in prod compare with js version of lit.
    So lit pretty cool and fast since behind you are using a native browser feature in the end with small fingerprint.

  • @limpiadora
    @limpiadora Год назад +2

    I think that all of the major frameworks can be compiled to Web Components!

    • @mma93067
      @mma93067 Год назад

      Angular has default support for web components. So you can compile to modules to
      Web components so you get the best of both worlds

  • @enkiimuto1041
    @enkiimuto1041 Год назад

    That might be exactly what I needed. Thank you!

  • @havocthehobbit
    @havocthehobbit Год назад +1

    yeah , I'd use this if I wasnt so comfortable with JSX and its large community eco system of existing reusable GUI components .
    However I'd straight jump on lit rather them working on html5 files directly again. TBH I'd even rather use Jquery then going back to working directly on html files again. I love the advantage of native web components being able to easily be used for reusable server side components .

  • @DioArsya
    @DioArsya Год назад +1

    I’ve done Web Components like 3 years ago and lookin at Lit right now looks simpler hahaha

    • @kyonas6047
      @kyonas6047 Год назад

      Ye a library like shoelace switched from stincill (a framework to build web components) to lit.. Idk why they did maybe its better for them? Their library is bassically ui elements that you can import into any of your projects by simply adding the es script into your html
      if you know daisy ui its the same thing but web components

  • @Falney
    @Falney 5 месяцев назад

    As some one who came back to web dev after a 16 year hiatus as a game dev, my immediate thoughts were "Wtf is React? Angular? The most Angular thing about this is the learning curve"

  • @orlando3650
    @orlando3650 Год назад +6

    The point of every new library or framework is exploring new ways of doing things and not an opportunity to bash other tools. Eventually, Lit will become a full blown framework like React or Angular, just give it some time to evolve. Finally, we don’t use frameworks because we want to, but because they save us time and effort.

  • @hardikluhar4738
    @hardikluhar4738 4 месяца назад

    Great Info!

  • @srinivasrg5125
    @srinivasrg5125 Год назад

    This sounds exciting 😃

  • @oussama40612
    @oussama40612 Год назад

    This is extremely interesting

  • @walkdead94
    @walkdead94 11 месяцев назад +1

    Wow... we have so many well-stabilized frameworks.. what are we gonna do?
    Lit team: Let's create another one and say we fix many frameworks problems!!

  • @AlexanderSuleymanovFX
    @AlexanderSuleymanovFX 10 месяцев назад

    I've been using lit-html for number of years. I've tried polymer components not so long ago. I couldn't make it to work. Gulp/Babel, webpack/Babel couldn't build/understand "@property" syntax. I had to switch to React.

  • @s4ndeep1203
    @s4ndeep1203 Год назад +1

    When vue ships their new "Vapor" engine (which removes the need for a virtual dom), it becomes a direct competitor to lit, but with a much better api?

    • @awesome-coding
      @awesome-coding  Год назад

      Right. But, in all fairness, Vue will be late to the game. Frameworks like Svelte and Solid are already working directly with the DOM, and they can compile to WebComponents as well.

    • @arjix8738
      @arjix8738 Год назад

      @@awesome-coding well, it is an upgrade to already existing sites that use vue

    • @s4ndeep1203
      @s4ndeep1203 Год назад

      @@awesome-coding Vue has been able to compile to WC since many years already. Way before the vite days.

  • @guilhermenunes3130
    @guilhermenunes3130 Год назад +2

    MOAR

    • @awesome-coding
      @awesome-coding  Год назад +2

      I'm trying but the day only has so many hours in it 😑
      I'll have to quit my job soon 🥲😅

  • @thekwoka4707
    @thekwoka4707 Год назад +2

    "tired of libraries? There's a library for that!"

  • @am01013
    @am01013 Год назад +6

    Svelte can compile into a web component :) No need for all the Lit boilerplate

    • @awesome-coding
      @awesome-coding  Год назад +3

      Most libraries can compile to WebComponents these days 👍🏻

    • @arjix8738
      @arjix8738 Год назад

      @@awesome-coding can react do it?
      Cause having every component be plain html is a pain

    • @am01013
      @am01013 Год назад

      @@awesome-coding Do they really? Last time I tried, it was not really a thing. And to my knowledge Svelte is the only compiler, the rest are libraries/frameworks. Maybe you could do a video with some comparison of native web components in Lit/Svelte/React, that would be awesome :D

    • @awesome-coding
      @awesome-coding  Год назад +2

      @@arjix8738 Yep! React can also do this.
      Some info is available in their documentation - react.dev/reference/react-dom/components#custom-html-elements
      And you can use things like these - github.com/bitovi/react-to-web-component

    • @awesome-coding
      @awesome-coding  Год назад +2

      @@am01013 Will do, thank you for the suggestion!

  • @blokche_dev
    @blokche_dev Год назад +2

    I would like to rely more on web components. But are they easily server rendered ? It was a major drawback at the time. What about now?

    • @awesome-coding
      @awesome-coding  Год назад +2

      Lit is experimenting with SSR (lit.dev/docs/v3/ssr/overview/) but their support is far from the performance you might be used to from other frameworks.

  • @MrQwertyXoid
    @MrQwertyXoid 5 месяцев назад

    How does it play with tailwindcss?

  • @surajs6469
    @surajs6469 Год назад +2

    Dude come to an comparison for the frontend frameworks

    • @surajs6469
      @surajs6469 Год назад

      Svelte vs solid and other frameworks

    • @awesome-coding
      @awesome-coding  Год назад

      I got you - ruclips.net/video/wUrY86BTGtg/видео.html ✌️

  • @anj000
    @anj000 Год назад

    0:21 "If you are sick of all this libraries, web components and especially Lit..."
    XD

  • @vigneshwarrv
    @vigneshwarrv 5 месяцев назад

    @1.20 Web Component are defined using javascript which has to be sent over the wire, in order to get them defined in browsers right ?

    • @awesome-coding
      @awesome-coding  5 месяцев назад +1

      I hope I'm getting this right - you are talking about the component implementation code, right?
      In that case, yes, that code has to be sent over the wire to the browser. The browser has access to the JS engine and the Web APIs needed to execute that code and run the components.

    • @vigneshwarrv
      @vigneshwarrv 5 месяцев назад

      @@awesome-coding yes yes yes

  • @naranyala_dev
    @naranyala_dev Год назад +1

    lit element and tailwind will be awesome

  • @camenraidercc6625
    @camenraidercc6625 Год назад +1

    I feel like you should find a better balance between memes / clips and code showed in the video, the fireship kinda style works but u should balance it a little more ;)

    • @awesome-coding
      @awesome-coding  Год назад

      Thank you for the feedback! I agree the format can be way better 😅
      Hopefully I'll figure it out in time.

  • @j.m.manhard
    @j.m.manhard Год назад +2

    Sadly no SSR without a framework. It does the frontend stuff for you, but what framework is limited to this nowadays?

    • @awesome-coding
      @awesome-coding  Год назад

      SSR is experimental in Lit 3 - lit.dev/docs/v3/ssr/overview/

  • @summerWTFE
    @summerWTFE 11 месяцев назад

    Are you tired of learning new tools? Just learn this new tool!

  • @PhaseControlDNB
    @PhaseControlDNB 8 дней назад

    2:50 this information is wrong - Angular doesn't use a Virtual DOM

  • @Robert-zc8hr
    @Robert-zc8hr Год назад

    Why not svelte? It compiles to web components to if that is your thing, or don't if you prefer not to.

    • @Classicv5
      @Classicv5 Год назад

      The whole benefit of web components is that you don’t have to compile them

    • @danko95bgd
      @danko95bgd Год назад

      It has many limitations, everyone should use lit but people are just ignorant and dumb.

    • @Nobodylihshdheuhdhd
      @Nobodylihshdheuhdhd Год назад

      @@danko95bgd some guy said that building a large project is a pain scroll for a lil bit and u will find it.

  • @avivbenshahar6422
    @avivbenshahar6422 Год назад

    Angular does not use virtual DOM

  • @ukaszszarpak1938
    @ukaszszarpak1938 Год назад +1

    First you talk about benefits of not using the framework to later proceed with the framework. I don't get it.

    • @awesome-coding
      @awesome-coding  Год назад +1

      I wouldn't call Lit a framework. At most it is a library which simplifies the work of building components using Web Standards.
      A framework has its own opinionated way of building components, routing, state management, reactivity and more.

  • @nonono9700
    @nonono9700 Год назад

    Since it uses plain template literals for rendering, how does it do with xss? Do we need to sanitize the content ourself?

    • @awesome-coding
      @awesome-coding  Год назад

      yep - we have to handle xss on our own

    • @jediampm
      @jediampm Год назад

      @@awesome-coding did you even tried on lit playground if lit avoid xss ? before answer, try it. Because you just gave wrong info. ;)

    • @awesome-coding
      @awesome-coding  Год назад

      @@jediampm I think you might be right.
      I looked into this still open issue right here - github.com/lit/lit.dev/issues/448 which points out some known XSS risks which might not have been addressed yet.
      It looks like the whole security aspect is stil an open issue in the GitHub project, but I might be mistaken, in which case I apologise.

  • @Fizzify
    @Fizzify Год назад

    Are you using WebStorm? Also do you have a community Discord server?

    • @awesome-coding
      @awesome-coding  Год назад +1

      I’m using IntelliJ IDEA.
      No Discord server yet :( I tried it a couple of months back, and there was little interest in this community to join there. I’ll try it again in a few months once there are more core members in here. I’m very active in the YT comments though

  • @felixinit
    @felixinit Год назад

    Why Web componentes? Lit. Excelent Solution

  • @asdqwe4427
    @asdqwe4427 Год назад

    They are so late to the party tho. I was so excited for web components 5 years ago, but Polymer at the time never really took off

  • @MikeNugget
    @MikeNugget Год назад

    Lit docs are pretty raw still. Is there SASS support setup working out of the box?

    • @awesome-coding
      @awesome-coding  Год назад

      No out of the box support for SASS I'm afraid 🥲

  • @ic6406
    @ic6406 Год назад +1

    YAJFK (Yet another javascript frameworks killer)

  • @SilvestreVivo
    @SilvestreVivo Год назад

    I don't see the benefit using this instead of Svelte

    • @Classicv5
      @Classicv5 Год назад +1

      Svelte has to be compiled and seems to have more proprietary dependencies and syntax

  • @AlexMercadoGo
    @AlexMercadoGo 6 месяцев назад

    It's frameworks all the way down

  • @ts8960
    @ts8960 Год назад +3

    > I see word class
    > immediately loses interest
    not going back to cavemen days

  • @theseangle
    @theseangle Год назад

    Bro can you turn down the bass in your EQ settings please? I want to watch the video cuz it seems valuable but it makes my ears bleed. I suggest buying a pair of quality headphones so that you can hear the overly large volume of bass that your voice with those settings has.

    • @awesome-coding
      @awesome-coding  Год назад

      Hey! Thanks for the suggestion!
      Sound is something I'm still struggling with. I'm usually using the Compressor, Limiter and Normalize settings in Audacity, but I never messed around with the bass. I'll try to figure out how this can be decreased.
      Thanks again!

    • @theseangle
      @theseangle Год назад

      @@awesome-coding you're welcome 👍 I believe you can use an EQ for such cases

  • @kasper369
    @kasper369 Год назад

    But using classes, no from me

    • @awesome-coding
      @awesome-coding  Год назад

      This is a very common stance. Funny how class support was such a big deal in ES6, and now everybody is pretty much running away from classes.

    • @arjix8738
      @arjix8738 Год назад

      @@awesome-coding personally I have no problem with classes, but using objects with methods within them is cleaner and just the same.

  • @vpetryniak
    @vpetryniak Год назад

    Why did you delete my comment?

    • @awesome-coding
      @awesome-coding  Год назад

      Hey! Which one? I’m never deleting comments, so it might be some other issue?

  • @dyfrigshandy
    @dyfrigshandy Год назад

    vs htmx + hyperscript?

    • @awesome-coding
      @awesome-coding  Год назад

      Man... everybody talks about htmx these days - I need to jump on this bandwagon and make a video on it 😅

    • @dyfrigshandy
      @dyfrigshandy Год назад

      @@awesome-coding yeappp

    • @dyfrigshandy
      @dyfrigshandy Год назад

      @@awesome-coding waiting...

  • @hafribilal
    @hafribilal Год назад

    Angular and Vue Don't use Virtual DOM btw

    • @awesome-coding
      @awesome-coding  Год назад +1

      Hey!
      You are right about Angular, they use an Incremental DOM.
      However, Vue uses a VirtualDOM (vuejs.org/guide/extras/rendering-mechanism.html) but they have plans to offer an alternative with Vapor mode.

  • @SheeceGardazi
    @SheeceGardazi Год назад

    no it provides no added value

  • @user-hn1ph6ry8l
    @user-hn1ph6ry8l Год назад

    Oh, I see Web Components hype about decade and its steel "kinda work". As I remember this conception make simple work simple and unsolved challenge for hard parts. And it's made no sense in real word how you build your components, it's just minor of developer task at all.

  • @gldzzpro5793
    @gldzzpro5793 9 месяцев назад

    from the start of the video when your start writing the word class and this and all that oop things i stop whatching the video sorry but javascript code is much cleaner specially with react

    • @awesome-coding
      @awesome-coding  9 месяцев назад +1

      😂 fair enough!

    • @gldzzpro5793
      @gldzzpro5793 9 месяцев назад

      @@awesome-coding bro functional components in react are so simple it is a function that get the data and return html so simple fn(data)=dynamicHTMLComponent and if you respect the good practises and clean code pattern and specially working with atomic design and theming with provider no more css problems and thank you for the video by the way i was lynig i completed watching all the video it was a joke hhh

    • @awesome-coding
      @awesome-coding  9 месяцев назад

      @@gldzzpro5793 I fully agree that the DX of React (or even better, Solid) is way more convenient than the one WebComponents or Lit is offering.
      At the end of the day, I believe this is what it all boils down to these days - what's the DX you prefer? You love functional and elegant - try React, you love clean and easy - try Vue, you love a good old fashion s**t show - go with Angular!

  • @kartonrad
    @kartonrad Год назад

    Oh lmao another js framework

  • @samsondavidoff372
    @samsondavidoff372 Год назад +1

    OOP again? no thanks. I prefer functional components 😀

  • @Rundik
    @Rundik Год назад

    Writing css in js is the worst

    • @Rundik
      @Rundik Год назад

      OMg he writes html in js too

    • @awesome-coding
      @awesome-coding  Год назад

      hahaha the html comment cracked me up

  • @wassfila
    @wassfila Год назад

    please a little bit less memes videos and a bit more text or diagrams, it feels like watching a video gag show, can't concentrate on content. 😢

    • @awesome-coding
      @awesome-coding  Год назад +2

      Thank you for your feedback!
      Honestly, this is a tough one for me. I actually like doing more code / text /diagrams (mostly because it's actually easier and faster to produce the video). However, it seems that the more memes I add, the higher the interest and retention in the videos.
      I'm still trying to calibrate things, and figure out the best mix of useful information and entertainment.

    • @wassfila
      @wassfila Год назад

      @@awesome-coding awesome, I really like your content and think it is valuable, but we can't satisfy everyone obviously, either we want to entertain first, or teach first ;) keep on the good content.

  • @adambickford8720
    @adambickford8720 Год назад +2

    This looks like it came out of a time machine and married the worst parts of java and react

    • @awesome-coding
      @awesome-coding  Год назад

      One of my favorite things about having a YT channel is reading the inventive ways you guys come up with to bash a topic 😂

    • @CurlyCow
      @CurlyCow 3 месяца назад

      I laughed out loud.

  • @romievthedon
    @romievthedon Год назад

    So the solution to a web framework is a web framework 😂😂😂😂

    • @Classicv5
      @Classicv5 Год назад +4

      Lit is a small library that reduces some of the boilerplate of vanilla JS features, and eventually it won't be needed. React has you writing proprietary code that has to be transpiled using a string of third party technologies. One marries you to an entire ecosystem and the other does not. React is a framework that calls itself a library and Lit is an actual library

  • @mnik0128
    @mnik0128 Год назад

    web components is dead
    they were dead since their birth

    • @awesome-coding
      @awesome-coding  Год назад +2

      This is what I've been telling people about Java for the past 15 years 🤦‍♂️