Lit 3.0 Explained

แชร์
ฝัง
  • เผยแพร่เมื่อ 16 ธ.ค. 2024

ความคิดเห็น • 162

  • @razt3757
    @razt3757 ปีที่แล้ว +101

    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 ปีที่แล้ว +98

      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  ปีที่แล้ว +44

      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 ปีที่แล้ว +13

      "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 ปีที่แล้ว +6

      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 ปีที่แล้ว +30

    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 ปีที่แล้ว

      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 ปีที่แล้ว +7

    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  ปีที่แล้ว +5

      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

  • @StiekemeHenk
    @StiekemeHenk ปีที่แล้ว +15

    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!

  • @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 :(

  • @Diamonddrake
    @Diamonddrake ปีที่แล้ว +3

    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.

  • @adriancasillas8675
    @adriancasillas8675 ปีที่แล้ว +8

    Excellent. More, please.

  • @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 ปีที่แล้ว +17

    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 11 หลายเดือนก่อน +4

      You can add lit via a CDN.

  • @FlygOnLiTe
    @FlygOnLiTe ปีที่แล้ว +3

    I remember using polymer web components back in 2014.

  • @enkiimuto1041
    @enkiimuto1041 ปีที่แล้ว

    That might be exactly what I needed. Thank you!

  • @vigneshwarrv
    @vigneshwarrv 9 หลายเดือนก่อน

    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.

  • @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.

  • @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.

  • @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.

  • @vigneshwarrv
    @vigneshwarrv 9 หลายเดือนก่อน

    @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  9 หลายเดือนก่อน +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 9 หลายเดือนก่อน

      @@awesome-coding yes yes yes

  • @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 .

  • @AlexanderSuleymanovFX
    @AlexanderSuleymanovFX ปีที่แล้ว

    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.

  • @PhaseControlDNB
    @PhaseControlDNB 4 หลายเดือนก่อน

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

  • @Falney
    @Falney 9 หลายเดือนก่อน

    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"

  • @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.

  • @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

  • @MrQwertyXoid
    @MrQwertyXoid 9 หลายเดือนก่อน

    How does it play with tailwindcss?

  • @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.

  • @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.

  • @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.

  • @srinivasrg5125
    @srinivasrg5125 ปีที่แล้ว

    This sounds exciting 😃

  • @hardikluhar4738
    @hardikluhar4738 8 หลายเดือนก่อน

    Great Info!

  • @oussama40612
    @oussama40612 ปีที่แล้ว

    This is extremely interesting

  • @walkdead94
    @walkdead94 ปีที่แล้ว +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!!

  • @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 - th-cam.com/video/wUrY86BTGtg/w-d-xo.html ✌️

  • @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 🥲

  • @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!

  • @iakuraa
    @iakuraa ปีที่แล้ว

    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

  • @summerWTFE
    @summerWTFE ปีที่แล้ว

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

  • @DioArsya
    @DioArsya ปีที่แล้ว

    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

  • @anj000
    @anj000 ปีที่แล้ว

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

    • @awesome-coding
      @awesome-coding  ปีที่แล้ว

      There is no way around them... sorry 😅

  • @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/

  • @avivbenshahar6422
    @avivbenshahar6422 ปีที่แล้ว

    Angular does not use virtual DOM

  • @thekwoka4707
    @thekwoka4707 ปีที่แล้ว +2

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

  • @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.

  • @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 🥲😅

  • @naranyala_dev
    @naranyala_dev ปีที่แล้ว +1

    lit element and tailwind will be awesome

    • @akshat_tamrakar
      @akshat_tamrakar ปีที่แล้ว

      Yeah, you can't do that...

    • @olladeluxepro
      @olladeluxepro ปีที่แล้ว

      th-cam.com/video/HwkXCYiRgtE/w-d-xo.html

  • @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

  • @felixinit
    @felixinit ปีที่แล้ว

    Why Web componentes? Lit. Excelent Solution

  • @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...

  • @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

  • @ic6406
    @ic6406 ปีที่แล้ว +1

    YAJFK (Yet another javascript frameworks killer)

  • @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.

  • @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

  • @AlexMercadoGo
    @AlexMercadoGo 10 หลายเดือนก่อน

    It's frameworks all the way down

  • @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?

  • @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.

  • @ДмитрийКарпич
    @ДмитрийКарпич ปีที่แล้ว

    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.

  • @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

  • @SheeceGardazi
    @SheeceGardazi ปีที่แล้ว

    no it provides no added value

  • @gldzzpro5793
    @gldzzpro5793 ปีที่แล้ว

    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  ปีที่แล้ว +1

      😂 fair enough!

    • @gldzzpro5793
      @gldzzpro5793 ปีที่แล้ว

      @@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  ปีที่แล้ว

      @@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!

  • @ts8960
    @ts8960 ปีที่แล้ว +3

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

  • @kartonrad
    @kartonrad ปีที่แล้ว

    Oh lmao another js framework

  • @samsondavidoff372
    @samsondavidoff372 ปีที่แล้ว +1

    OOP again? no thanks. I prefer functional components 😀

  • @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.

  • @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

  • @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 😂

  • @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 🤦‍♂️