angular 7 + web api (dotnet core 2.2) 개발환경구축

패키지 매니저 설치

  • windows - chocolatey (https://chocolatey.org/install)
    @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
    
  • macos - brew (https://brew.sh)
    /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
    brew update && brew upgrade
    brew tap caskroom/cask
    

window user

  • visual studio 2019 or 2017 (https://visualstudio.microsoft.com/)

  • vscode
    choco install vscode -y
    
  • dotnet core 2.2 sdk
    choco install dotnetcore-sdk -y
    
  • git bash
    choco install git -y
    
  • postman
    brew cask install postman
    
  • nodejs (https://nodejs.org/ko/download/)
    choco install nodejs-lts -y
    
  • 추가 npm package
    npm install -g @angular/cli
    
  • vs code plugin install
    • Angular Language Service

macos user

  • dotnet core 2.2 sdk
    brew cask install dotnet
    
  • git
    git --version # 기존 버전 확인
    brew install git
    brew link --force git
    git --version # 새버전 확인
    
  • vscode
    brew cask install visual-studio-code
    
  • postman
    brew cask install postman
    
  • nodejs
    brew install node
    
  • 추가 npm package
    npm install -g @angular/cli
    

vs code plugin

Angular Language Service 를 설치한다.

teamsmiley's profile image

teamsmiley

2019-04-15 00:00

Read more posts by this author