You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/docs/src/routes/(blog)/blog/(articles)/qwik-1-14-preloader/index.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ Here is how you can download it:
31
31
32
32
## A Qwik recap
33
33
34
-
One of the core features that makes Qwik so… well.. quick… is what we call “**Javascript Streaming**” – the unique ability to execute a part of the code as soon as it is ready, before all the code has been downloaded – speeding up your website’s [TTI (Time To Interactive)]([https://developer.mozilla.org/en-US/docs/Glossary/Time_to_interactive](https://developer.mozilla.org/en-US/docs/Glossary/Time_to_interactive)) similarly to how [video streaming]([https://www.cloudflare.com/learning/video/what-is-buffering/](https://www.cloudflare.com/learning/video/what-is-buffering/)) is significantly faster than downloading an entire video and then playing it thanks to buffering and on demand delivery.
34
+
One of the core features that makes Qwik so... well... quick... is what we call “**Javascript Streaming**” – the unique ability to execute a part of the code as soon as it is ready, before all the code has been downloaded – speeding up your website’s [TTI (Time To Interactive)]([https://developer.mozilla.org/en-US/docs/Glossary/Time_to_interactive](https://developer.mozilla.org/en-US/docs/Glossary/Time_to_interactive)) similarly to how [video streaming]([https://www.cloudflare.com/learning/video/what-is-buffering/](https://www.cloudflare.com/learning/video/what-is-buffering/)) is significantly faster than downloading an entire video and then playing it thanks to buffering and on demand delivery.
35
35
36
36
This mechanism is first enabled at build-time thanks to the [Qwik optimizer](https://qwik.dev/docs/advanced/optimizer/#optimizer), which looks for $ signs and splits your application code into smaller pieces (called “segments”). Then the bundler ([Rollup](https://rollupjs.org/)) groups these segments into small javascript files (called “bundles”) that hold related segments together.
0 commit comments