Skip to content

Commit c7e6e98

Browse files
committed
Add introductory documentation regarding different rendering methods
1 parent 94c1074 commit c7e6e98

File tree

2 files changed

+38
-14
lines changed

2 files changed

+38
-14
lines changed

documentation/docs/00-introduction.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,38 @@ Building an app with all the modern best practices — code-splitting, offline s
1919

2020
You don't need to know Svelte to understand the rest of this guide, but it will help. In short, it's a UI framework that compiles your components to highly optimized vanilla JavaScript. Read the [introductory blog post](https://svelte.dev/blog/svelte-3-rethinking-reactivity) and the [tutorial](https://svelte.dev/tutorial) to learn more.
2121

22+
### Rendering on the web
23+
24+
The core of SvelteKit provides a highly configurable rendering engine. This section describes some of the terms used when discussing that rendering engine. A reference for setting these options is provided later in the documentation.
25+
26+
#### SSR
27+
28+
Server-side rendering (SSR) is the generation of the page contents on the server. SSR is generally preferred for SEO. While some search engines can index content that is dynamically generated on the client-side it may take longer even in these cases. It also tends to improve perceived performance and makes your app accessible to users if JavaScript fails or is disabled (which happens [more often than you probably think](https://kryogenix.org/code/browser/everyonehasjs.html)).
29+
30+
#### CSR and SPA
31+
32+
Client-side rendering (CSR) is the generation of the page contents in the web browser using JavaScript. A single-page app (SPA) is an application in which all requests to the server load a single HTML file which then does client-side rendering of the requested contents based on the requested URL. All navigation is handled on the client-side in a process called client-side routing with per-page contents being updated and common layout elements remaining largely unchanged. SPAs do not provide SSR, which has the shortcoming described above. However, some applications are not greatly impacted by these shortcomings such as a complex business application behind a login where SEO would not be important and it is known that users will be accessing the application from a consistent computing environment.
33+
34+
#### Prerendering
35+
36+
Prerendering means computing the contents of a page at build time and saving the HTML for display. This approach has the same benefits as traditional server-rendered pages, but avoids recomputing the page for each visitor and so scales nearly for free as the number of visitors increases. The tradeoff is that the build process is more expensive and prerendered content can only be updated by building and deploying a new version of the application.
37+
38+
Not all pages can be prerendered. The basic rule is this: for content to be prerenderable, any two users hitting it directly must get the same content from the server. Note that you can still prerender content that is loaded based on the page's parameters as long as all users will be seeing the same prerendered content.
39+
40+
Pre-rendered pages are not limited to static content. You can build personalized pages if user-specific data is fetched and rendered client-side. This is subject to the caveat that you will experience the downsides of not doing SSR for that content as discussed above.
41+
42+
#### SSG
43+
44+
Static Site Generation (SSG) is a term that refers to a site where every page is prerendered. This is what SvelteKit's `adapter-static` does. SvelteKit was not built to do only static site generation like some tools and so may not scale as well to efficiently render a very large number of pages as tools built specifically for that purpose. However, in contrast to most purpose-built SSGs, SvelteKit does nicely allow for mixing and matching different rendering types on different pages. One benefit of fully prerendering a site is that you do not need to maintain or pay for servers to perform SSR. Once generated, the site can be served from CDNs, leading to great "time to first byte" performance. This delivery model is often referred to as JAMstack.
45+
46+
#### Hydration
47+
48+
Svelte components store some state and update the DOM when the state is updated. When fetching data during SSR, by default SvelteKit will store this data and transmit it to the client along with the server-rendered HTML. The components can then be initialized on the client with that data without having to call the same API endpoints again. Svelte will then check that the DOM is in the expected state and attach event listeners in a process called hydration. Once the components are fully hydrated, they can react to changes to their properties just like any newly created Svelte component.
49+
50+
#### Routing
51+
52+
By default, when you navigate to a new page (by clicking on a link or using the browser's forward or back buttons), SvelteKit will intercept the attempted navigation and handle it instead of allowing the browser to send a request to the server for the destination page. SvelteKit will then update the displayed contents on the client by rendering the component for the new page, which in turn can make calls to the necessary API endpoints. This process of updating the page on the client in response to attempted navigation is called client-side routing.
53+
2254
### Getting started
2355

2456
The easiest way to start building a SvelteKit app is to run `npm init`:

documentation/docs/11-ssr-and-javascript.md

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ If both are specified, per-page settings override per-app settings in case of co
1010

1111
### ssr
1212

13-
Disabling server-side rendering effectively turns your SvelteKit app into a **single-page app** or SPA.
13+
Disabling [server-side rendering](#introduction-ssr) effectively turns your SvelteKit app into a [**single-page app** or SPA](#introduction-csr-and-spa).
1414

15-
> In most situations this is not recommended: it harms SEO, tends to slow down perceived performance, and makes your app inaccessible to users if JavaScript fails or is disabled (which happens [more often than you probably think](https://kryogenix.org/code/browser/everyonehasjs.html)). Sometimes it's appropriate or even necessary, but consider alternatives before disabling SSR.
15+
> In most situations this is not recommended: see [the discussion in the intro](#introduction-ssr). Consider whether it's truly appropriate to disable and don't simply disable SSR because you've hit an issue with it.
1616
1717
You can disable SSR app-wide with the [`ssr` config option](#configuration-ssr), or a page-level `ssr` export:
1818

@@ -24,9 +24,7 @@ You can disable SSR app-wide with the [`ssr` config option](#configuration-ssr),
2424

2525
### router
2626

27-
SvelteKit includes a client-side router that intercepts navigations (from the user clicking on links, or interacting with the back/forward buttons) and updates the page contents, rather than letting the browser handle the navigation by reloading.
28-
29-
In certain circumstances you might need to disable this behaviour with the app-wide [`router` config option](#configuration-router) or the page-level `router` export:
27+
In certain circumstances you might need to disable [client-side routing](#introduction-routing) with the app-wide [`router` config option](#configuration-router) or the page-level `router` export:
3028

3129
```html
3230
<script context="module">
@@ -38,7 +36,7 @@ Note that this will disable client-side routing for any navigation from this pag
3836

3937
### hydrate
4038

41-
Ordinarily, SvelteKit 'hydrates' your server-rendered HTML into an interactive page. Some pages don't require JavaScript at all — many blog posts and 'about' pages fall into this category. In these cases you can skip hydration when the app boots up with the app-wide [`hydrate` config option](#configuration-hydrate) or the page-level `hydrate` export:
39+
Ordinarily, SvelteKit [hydrates](#introduction-hydration) your server-rendered HTML into an interactive page. Some pages don't require JavaScript at all — many blog posts and 'about' pages fall into this category. In these cases you can skip hydration when the app boots up with the app-wide [`hydrate` config option](#configuration-hydrate) or the page-level `hydrate` export:
4240

4341
```html
4442
<script context="module">
@@ -50,7 +48,7 @@ Ordinarily, SvelteKit 'hydrates' your server-rendered HTML into an interactive p
5048
5149
### prerender
5250

53-
It's likely that at least some pages of your app can be represented as a simple HTML file, since they contain no dynamic or user-specific data. These pages can be _prerendered_ by your [adapter](#adapters).
51+
It's likely that at least some pages of your app can be represented as a simple HTML file generated at build time. These pages can be [_prerendered_](#introduction-prerendering) by your [adapter](#adapters).
5452

5553
If your entire app is suitable for prerendering, you could use [`adapter-static`](https://github.com/sveltejs/kit/tree/master/packages/adapter-static), which will generate HTML files for every page, plus additional files that are requested by `load` functions in those pages.
5654

@@ -64,13 +62,7 @@ In many cases, you'll only want to prerender specific pages in your app. You'll
6462

6563
The prerenderer will start at the root of your app and generate HTML for any prerenderable pages it finds. Each page is scanned for `<a>` elements that point to other pages that are candidates for prerendering — because of this, you generally don't need to specify which pages should be accessed. If you _do_ need to specify which pages should be accessed by the prerenderer, you can do so with the `pages` option in the [prerender configuration](#configuration-prerender).
6664

67-
#### When not to prerender
68-
69-
The basic rule is this: for a page to be prerenderable, any two users hitting it directly must get the same content from the server.
70-
71-
> In other words, any app that involves user sessions or authentication is _not_ a candidate for `adapter-static`, even if individual pages within an app _are_ suitable for prerendering.
72-
73-
Note that you can still prerender pages that load data based on the page's parameters, like our `src/routes/blog/[slug].svelte` example from earlier. The prerenderer will intercept requests made inside `load`, so the data served from `src/routes/blog/[slug].json.js` will also be captured.
65+
> Not all pages are suitable for prerendering. Any content that is prerendered will be seen by all users. For a more in-depth discussion, see [the prerendering section of the introduction](#introduction-prerendering).
7466
7567
#### Route conflicts
7668

0 commit comments

Comments
 (0)