Node.js 설치
nvm 설치
nvm(node version manager)은 Node.js의 여러 버전을 쉽게 설치할 수 있는 툴.
https://github.com/coreybutler/nvm-windows/tree/release-new-patch-version
최신 인스톨
https://github.com/coreybutler/nvm-windows/releases
윈도우는 .exe .msi 사용함
nvm-setup.exe 다운받고 설치
관리자권한 파워쉘에서
nvm list available
최신버전 설치
nvm install node
nvm install lts # lts 최신버전
사용방법
nvm use [설치한 노드 버전]
설치된 버전 확인
nvm list
npm -v
typescript 설치
파워쉘 종료
cmd 실행
npm install typescript -g # ypeScript를 글로벌하게 설치
확인하기
cmd 창에서 tsc 명령어가 동작하는지 확인
tsc는 typescript 컴파일러
컴파일러- 정적 언어(=컴파일 언어) → 기계어로 변환이 되어야 함
- 동적 언어(=인터프리터 언어) → 엔진이 코드를 한 줄씩 실행하면서 동적으로 해석
명령어
- 자세한 명령어 옵션 확인
https://www.typescriptlang.org/docs/handbook/compiler-options.html
- 주요 명령어
- `tsc —-init`
- tsconfig.json이 생성
- `tsc index.ts`
- index.ts를 컴파일
- .ts**는 TypeScript 파일의 확장자
- `tsc src/*.ts`
- src 디렉토리 안에 있는 모든 TypeScript 파일을 컴파일
- `tsc index.js --declaration --emitDeclarationOnly`
- @types 패키지를 위한.d.ts 파일 생성
- TypeScript로 작성된 모듈이 아니라 JavaScript로 작성된 모듈에 타입 선언을 제공할 때 사용용
'내일배움 강의 > 강의-TypeScript 문법 종합반' 카테고리의 다른 글
4주차 (0) | 2025.01.18 |
---|---|
3주차 (1) | 2025.01.18 |
2주차 (0) | 2025.01.17 |