svelte
Installation
SKILL.md
Svelte 5
A framework that compiles components to efficient JavaScript at build time.
Quick Start
Create project:
npx sv create my-app
cd my-app
npm install
npm run dev
Component Basics
<script lang="ts">
let count = $state(0);