Qwik Framework Deep-Dive Full Course with Misko Hevery (The Creator of Angular & now Qwik)

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

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

  • @fum4ikk
    @fum4ikk ปีที่แล้ว +9

    Great talk Misko and congrats to the whole team for the tremendous work!
    I'm sure the whole web space will follow suit sooner or later, thanks for paving the way!

  • @swattertroops-yaaa
    @swattertroops-yaaa ปีที่แล้ว +6

    keep this open for years to come.

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

    I knew this course would be awesome the moment I saw it was taught by Miško.

  • @janvarga7547
    @janvarga7547 ปีที่แล้ว +9

    thought solid is good but ooo man qwik

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

    I sill remember Misko's AngularJS course on frontendmasters, such a long journey!

  • @andykras
    @andykras 11 หลายเดือนก่อน +1

    great talk ❤

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

    I love Qwik :)

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

    Great talk.

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

    Can you make a PWA with Qwik ?

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

      Because of the dependence on the server to get JS, my guess is no. Qwik's goal is to only load the JS that's needed at a given moment, whereas PWA's have a goal of being able to run fully client side, and to do that all the JS needs to be loaded onto the client. These goals seems antithetical, so I don't believe Qwik can be used for a PWA without heavily fighting against the framework: I don't know much about Qwik though so I might be wrong.

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

      Well I guess if you go full SSG, that might be possible, though I didn't try.

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

    Not sure how third party libraries like highcharts or google ads gpt will work

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

    If that the downloading the initial bundle file which is relatively huge and so it takes time make it interactive, then why dont you use service workers to download the files and make the rendering as early as possible. Google came up with a nice package called workbox where you can even cache the network requests. It pre reaches the file and store it in the client

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

      Ofcourse a lot of things involved, like computation cost, network latency, time taken for interactivity etc. but my point is , with the help of service worker you can pre download your assets and put it a cache that might require to be available in coming pages. After that there is no round trip to get assets including JS. In My application , i have done this, the amount of file transferred with 2 pages , login and dashboard was almost 7.6 MB then i cut down into 339kB

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

      Yes right, service worker cannot speed up the download, but it will start downloading it when you just landed the first page in a diff thread. So only thing is, you make your landing page as tiny as possible.

    • @yusril-ihsanul-alim
      @yusril-ihsanul-alim ปีที่แล้ว +2

      @@ahammadalipk I wonder why you ask after watch 3 hour lenght video. are u watching till finish?

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

      @@ahammadalipk Downloading the static assets in a different thread doesn't shorten the TTI. What's your point?
      And what do you mean by "landing page"? Modern SPA serves an index.html that's basically blank. Isn't that "small" enough? That's not the point...
      Service workers can be useful in building PWAs, caching data, and executing heavy computing tasks in the background without blocking the UI thread. But none of these have anything to do with downloading and parsing and executing fewer stuff on the *first* visit, hence not improving TTI in those aspects.