Course lesson

Create a new SvelteKit project

The first step to starting a SvelteKit projects is initialize the app with commands from SvelteKit's website.

Duration
1 min
Access
Free
Transcript
Retained from source evidence

The first step to starting a SvelteKit projects is initialize the app with commands from SvelteKit's website.

Terminal
npm create svelte@latest my-app
cd my-app
npm install
npm run dev -- --open

We'll then test our app is running by adding html to our src/routes/index.svelte route.