From 43db1bb6bfc72e2a43398eb819bacf1c49b472be Mon Sep 17 00:00:00 2001 From: Jun Shindo <46585162+jay-es@users.noreply.github.com> Date: Mon, 28 Apr 2025 19:05:25 +0900 Subject: [PATCH] docs: add Deno commands --- guide/index.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/guide/index.md b/guide/index.md index 960cddfe..5569877b 100644 --- a/guide/index.md +++ b/guide/index.md @@ -65,6 +65,10 @@ $ pnpm create vite $ bun create vite ``` +```bash [Deno] +$ deno init --npm vite +``` + ::: あとは画面表示に従ってください! @@ -90,6 +94,10 @@ $ pnpm create vite my-vue-app --template vue $ bun create vite my-vue-app --template vue ``` +```bash [Deno] +$ deno init --npm vite my-vue-app --template vue +``` + ::: サポートされている各テンプレートの詳細は [create-vite](https://github.com/vitejs/vite/tree/main/packages/create-vite) を参照してください: `vanilla`, `vanilla-ts`, `vue`, `vue-ts`, `react`, `react-ts`, `react-swc`, `react-swc-ts`, `preact`, `preact-ts`, `lit`, `lit-ts`, `svelte`, `svelte-ts`, `solid`, `solid-ts`, `qwik`, `qwik-ts`. @@ -134,6 +142,10 @@ $ pnpm add -D vite $ bun add -D vite ``` +```bash [Deno] +$ deno add -D npm:vite +``` + ::: そして、次のような `index.html` ファイルを作成します: @@ -162,6 +174,10 @@ $ pnpm vite $ bunx vite ``` +```bash [Deno] +$ deno run -A npm:vite +``` + ::: `index.html` は `http://localhost:5173` で配信されます。