Create a new SvelteKit project

InstructorBen Patton

Share this video with your friends

Send Tweet

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

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.