-
For the code for this demo, check out the Qase for Qwik GitHub repo.
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
-
While on the Network pane of devtools, I’ve selected only to show JS requests. At first, we can see two files: client and enb.mjs - those are files from Vite - our dev server, which also powers Qwik and QwikCity. To hide those files so we can see the actual JS that a production build would serve, we can filter any path that has vite in it. After I’ve hidden all Vite-related files, I hit refresh again (with cmd + R), then we can see…. No JavaScript is downloaded!! 🤯
-
For demo purposes, I’m not going to go into how to start a Qwik project. For more info on getting started with Qwik, check out the Qwik docs or our Stackblitz Qwik Starter.
-
Next.js 13 is de facto the only framework that currently supports RSC as well as many more optimizations that improve performance. This is definitely an improvement, but it still requires the developer to think about it on a component-by-component basis.
-
Marko is a huge leap in the right direction. It has streaming, partial hydration, a compiler that optimizes your output, and a small runtime. I’ve also heard through the grapevine that Marko V6 also adds resumability to the framework as well.
-
Then we had JavaScript sprinkles in the form of jQuery da OG DOM manipulator.
-
Astro has a different approach with their “islands architecture”: