Description
I am reading the basic svelte tutorial and trying to follow it locally. The first page of the tutorial claims that you can follow along locally by running npx sv create.
The problem is that when the user does this he or she is presented with a few template options (SvelteKit minimal, SvelteKit demo, Svelte Library) where it is not explicitly mentioned to the user which alternative to choose. My guess is that most users would choose Svelte Library since the tutorial is for Svelte whereas SvelteKit comes later in the tutorial. After doing this, however, the user is stuck in a structure that does not resemble the folder structure in the tutorial. The provided template creates a structure with src/routes/+page.svelte and it is unclear where and how to unite this with the structure in the tutorial without some guessing and restructuring, which might feel overwhelming and lacking to a new user who just want to get started and test some stuff out.
So the issue is that this first step is lacking and needs some work with hand-holding for users who are running the tutorial locally so that they get explicit instructions on what to do to get started and don't feel immediately lost and confused and need to problem-solve, which I guess is what you never want for a tutorial like this.