Svelte Web Framework

5.55.4 · active · verified Sat Apr 18

Svelte is a cybernetically enhanced web application framework. It operates as a compiler, transforming declarative Svelte components into highly efficient JavaScript that directly manipulates the DOM, rather than relying on a virtual DOM. The current stable version is 5.55.4, with frequent patch releases and regular minor updates, indicating active development and maintenance.

Common errors

Warnings

Install

Imports

Quickstart

This command creates a new SvelteKit project, the recommended way to build applications with Svelte. It sets up a development server and includes a basic Svelte application structure.

npx sv create my-app
cd my-app
npm install
npm run dev

view raw JSON →