「.NET 開発基盤部会 Wiki」は、「Open棟梁Project」,「OSSコンソーシアム .NET開発基盤部会」によって運営されています。
2026年、リブート(Vite + React + TypeScript + Tailwind)。
npm create vite@latest my-app -- --template react-ts cd my-app npm install npm run dev
PS > npm create vite@latest my-app -- --template react-ts Need to install the following packages: create-vite@9.0.3 Ok to proceed? (y) y > npx > create-vite my-app --template react-ts │ ◇ Install with npm and start now? │ Yes │ ◇ Scaffolding project in D:\temp\my-app... │ ◇ Installing dependencies with npm... added 172 packages, and audited 173 packages in 25s 49 packages are looking for funding run `npm fund` for details found 0 vulnerabilities │ ◇ Starting dev server... > my-app@0.0.0 dev > vite VITE v8.0.2 ready in 940 ms ➜ Local: http://localhost:5173/ ➜ Network: use --host to expose ➜ press h + enter to show help h Shortcuts press r + enter to restart the server press u + enter to show server url press o + enter to open in browser press c + enter to clear console press q + enter to quit
cd my-app
npm install xxxx
npm install
npm run dev
外部からのアクセスを可能にする。
npm run dev -- --host
フロントエンドの開発を面倒な設定なしでTypeScript, JSX, CSSなどをすぐに使い始められるツール
ほとんどの追加機能(フレームワーク対応、カスタム変換、開発サーバーの拡張など)をプラグインで実現
Rollup/Rolldownに、バンドル、コード分割、minifyなどが同梱される(一部プラグイン)。