`sv create`は、[追加機能の設定](sv-add#Official-add-ons)オプションを含む新しいSvelteKitプロジェクトをセットアップします。 ## 使用方法 ```sh npx sv create [options] [path] ``` ## オプション ### `--from-playground ` Create a SvelteKit project from a [playground](/playground) URL. This downloads all playground files, detects external dependencies, and sets up a complete SvelteKit project structure with everything ready to go. Example: ```sh npx sv create --from-playground="https://svelte.dev/playground/hello-world" ``` ### `--template ` 使用するプロジェクトテンプレート: - `minimal` — 新しいアプリのための最小限のスキャフォールディング - `demo` — JavaScript無しで動作するワード推測ゲームを備えたデモアプリ - `library` — Svelteライブラリのためのテンプレートで、`svelte-package`でセットアップされています ### `--types