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.