From 9449c68afde9486f2c8f145767d81b89cc387354 Mon Sep 17 00:00:00 2001 From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Tue, 6 Dec 2022 16:32:44 -0800 Subject: [PATCH] [docs] add some basic docs about bundler plugins --- site/content/docs/01-getting-started.md | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/site/content/docs/01-getting-started.md b/site/content/docs/01-getting-started.md index 48cdbcc231..4a911fb904 100644 --- a/site/content/docs/01-getting-started.md +++ b/site/content/docs/01-getting-started.md @@ -6,17 +6,8 @@ title: Getting started To try Svelte in an interactive online environment you can try [the REPL](https://svelte.dev/repl) or [StackBlitz](https://node.new/svelte). -To create a project locally, run: +To create a project locally we recommend using [SvelteKit](https://kit.svelte.dev/), the official application framework from the Svelte team. It will handle calling [the Svelte compiler](https://www.npmjs.com/package/svelte) to convert your `.svelte` files to `.js` and `.css` . It also provides all the other pieces you need to build a web application such as routing and deployment. There are [plugins to handle Svelte compilation](https://sveltesociety.dev/tools#bundling) for all the major web bundlers, but we recommend using [Vite](https://vitejs.dev/), which SvelteKit sets up automatically. -``` -npm create vite@latest myapp -- --template svelte -cd myapp -npm install -npm run dev -``` - -Or use [SvelteKit](https://kit.svelte.dev/), the official application framework from the Svelte team (currently in release candidate status). - -The Svelte team maintains a [VS Code extension](https://marketplace.visualstudio.com/items?itemName=svelte.svelte-vscode) and the Svelte community has created a list of integrations with various other [tooling and editors](https://sveltesociety.dev/tools). +The Svelte team maintains a [VS Code extension](https://marketplace.visualstudio.com/items?itemName=svelte.svelte-vscode) and there are integrations with various other [editors](https://sveltesociety.dev/tools#editor-support) and tools as well. If you're having trouble, get help on [Discord](https://svelte.dev/chat) or [StackOverflow](https://stackoverflow.com/questions/tagged/svelte).