Skip to content

Commit b2f6a41

Browse files
p5quaredbenmccann
andauthored
docs: sv create already installs dependencies (#14095)
* docs(getting-started): note that sv create already install dependencies * fix: creating-a-project spelling Co-authored-by: Ben McCann <322311+benmccann@users.noreply.github.com> * fix: reword 20-creating-a-project.md Co-authored-by: Ben McCann <322311+benmccann@users.noreply.github.com> --------- Co-authored-by: Ben McCann <322311+benmccann@users.noreply.github.com>
1 parent e1b326b commit b2f6a41

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

documentation/docs/10-getting-started/20-creating-a-project.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@ The easiest way to start building a SvelteKit app is to run `npx sv create`:
77
```sh
88
npx sv create my-app
99
cd my-app
10-
npm install
1110
npm run dev
1211
```
1312

14-
The first command will scaffold a new project in the `my-app` directory asking you if you'd like to set up some basic tooling such as TypeScript. See [integrations](./integrations) for pointers on setting up additional tooling. The subsequent commands will then install its dependencies and start a server on [localhost:5173](http://localhost:5173).
13+
The first command will scaffold a new project in the `my-app` directory asking if you'd like to set up some basic tooling such as TypeScript. See [the CLI docs](/docs/cli/overview) for information about these options and [the integrations page](./integrations) for pointers on setting up additional tooling. `npm run dev` will then start the development server on [localhost:5173](http://localhost:5173) - make sure you install dependencies before running this if you didn't do so during project creation.
1514

1615
There are two basic concepts:
1716

0 commit comments

Comments
 (0)