sveltekit
Installation
SKILL.md
SvelteKit
SvelteKit is the meta-framework for Svelte, similar to Next.js for React. It uses standard Web APIs and provides routing, server-side rendering, and API endpoints.
When to Use
- Svelte Apps: The standard way to build Svelte apps in 2025.
- Full Stack: Unified backend and frontend.
- Edge Deployment: Runs on any platform via Adapters (Vercel, Cloudflare, Netlify, Node).
Quick Start
File-based routing in src/routes.
<!-- src/routes/+page.svelte -->
<script>
let { data } = $props(); // Received from +page.server.js
</script>