如何快速建置 Node.js 專案並使用 TypeScript 與 Visual Studio Code 進行開發
- Leo
- 技術宅 ( tech geek)
- 2024年2月23日
目錄
安裝 .NET CLI
- on Windows with Chocolatey
choco install dotnetcore-sdk -y
- on macOS with Homebrew
brew install dotnet-sdk
- on Ubuntu
sudo apt-get install dotnet-sdk -y
使用 Will 保哥 的專案範本建立一個新的 TypeScript 專案
- 安裝專案範本
dotnet new --install Duotify.Templates.DotNetNew
- 建立新的 TypeScript 專案
mkdir <project-folder> && cd <project-folder>
dotnet new tsnode -c "<username>"
npm install
- 啟動專案
按下 Ctrl+Shift+B
即可自動執行 npm start
命令
程式會自動監視檔案變更並自動重啟程式!