필요성: 타입스크립트 개발 환경 설정
윈도우 파워셸 관리자로 실행 및 설치
Set-ExecutionPolicy RemoteSigned -scope CurrentUser
$env:SCOOP = 'C:\Scoop'
iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
scoop install aria2
scoop install git
scoop update *
scoop bucket add extras
scoop install vscode
팁: 다음 메시지의 의미
Add Visual Studio Code as a context menu option by running: "C:Scoop\apps\vscode\current\vscode-install-context.reg"
해당 파일을 실행하면 마우스 오른쪽 단축 메뉴에 vs코드실행메뉴가 나타난다는 소리다. 실행해 보자
scoop install nodejs-lts
node-v ---- (버전확인)
scoop install chromium
chrome ---(설치 정상적으로 끝났는지 알기 위해 브라우저 실행하는 것)
npm i -g typescript --- (타이스크립트 패키지 설치. 노드js환경에서만 동작하므로 npm으로 전역 설치함)
tsc -v ----(버젼확인 )
scoop install touch -- 윈도우에서도 touch를 ㅅ아요할 수 있게 해줌
파일 생성: touch hello.ts
파일 변환: tsc hello.ts
(이후 hello.js 파일이 생성된다)
npm i -g ts-node
ts-node hello.ts