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.
npm create svelte@latest my-app
cd my-app
npm install
npm run dev -- --openWe'll then test our app is running by adding html to our src/routes/index.svelte route.