SvelteKit logo

SvelteKit

Version 2.5

4.7(User Rating)
Released: March 2021 (public beta)

About SvelteKit

SvelteKit is an application framework powered by Svelte. It provides a flexible filesystem-based router, server-side rendering (SSR), client-side hydration, and an adapter system for deploying to various platforms. Svelte itself is a compiler that turns your declarative components into efficient imperative code that surgically updates the DOM.

Key Features & Usage

Build highly performant web applications with less code. Suitable for projects ranging from small sites to complex apps.

Example Code

<script>
  let count = 0;
  function handleClick() {
    count += 1;
  }
</script>

<button on:click={handleClick}>
  Clicked {count} {count === 1 ? 'time' : 'times'}
</button>

Tags

Svelte
Compiler
Web Apps
SSR
Performance