Skip to content

Commit a343129

Browse files
committed
[docs] rephrase SvelteKit intro
1 parent ca0b912 commit a343129

File tree

1 file changed

+2
-4
lines changed
  • content/tutorial/02-sveltekit/01-concepts/01-introducing-sveltekit

1 file changed

+2
-4
lines changed

content/tutorial/02-sveltekit/01-concepts/01-introducing-sveltekit/README.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
title: What is SvelteKit?
33
---
44

5-
So far, we've been working on individual components, or groups of components, in isolation. But to build a complete app, you need more than just components.
6-
7-
That's where SvelteKit comes in. Whereas Svelte is a _component framework_, SvelteKit is an _app framework_ (or 'metaframework', depending on who you ask) that solves the tricky problems of building something production-ready:
5+
SvelteKit is a framework for building extremely high-performance web apps. Whereas Svelte is a _component framework_, SvelteKit is an _app framework_ (or 'metaframework', depending on who you ask) that solves the tricky problems of building something production-ready:
86

97
- Routing
108
- Server-side rendering
@@ -20,4 +18,4 @@ That's where SvelteKit comes in. Whereas Svelte is a _component framework_, Svel
2018

2119
SvelteKit apps are server-rendered by default (like traditional 'multi-page apps' or MPAs) for excellent first load performance and SEO characteristics, but can then transition to client-side navigation (like modern 'single-page apps' or SPAs) to avoid jankily reloading everything (including things like third-party analytics code) when the user navigates. They can run anywhere JavaScript runs, though — as we'll see — your users may not need to run any JavaScript at all.
2220

23-
If that sounds complicated, worry not: you've been using SvelteKit this whole time!
21+
If that sounds complicated, worry not: SvelteKit is the framework that grows with you! Start simple and add new features as they come. This tutorial will go over the core concepts, while the [Advanced SvelteKit](/handle) tutorial teaches you how to tackle more complex use cases.

0 commit comments

Comments
 (0)