From 6257203c22683f45ff1aabd515e023f2f2825cf2 Mon Sep 17 00:00:00 2001 From: Emanuele Picchirallo Date: Wed, 23 Oct 2024 20:18:59 +0530 Subject: [PATCH] docs: specify script language and add `npm install` step to installation guide (#13804) --- documentation/docs/01-introduction/02-getting-started.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/documentation/docs/01-introduction/02-getting-started.md b/documentation/docs/01-introduction/02-getting-started.md index a83dd27a2b..1abc05fc5e 100644 --- a/documentation/docs/01-introduction/02-getting-started.md +++ b/documentation/docs/01-introduction/02-getting-started.md @@ -4,9 +4,10 @@ title: Getting started We recommend using [SvelteKit](../kit), the official application framework from the Svelte team powered by [Vite](https://vite.dev/): -``` +```bash npx sv create myapp cd myapp +npm install npm run dev ```