내일배움 강의/강의-TypeScript 문법 종합반2 2주차 컴파일러- 정적 언어(=컴파일 언어) → 기계어로 변환이 되어야 함 - 동적 언어(=인터프리터 언어) → 엔진이 코드를 한 줄씩 실행하면서 동적으로 해석 명령어 - 자세한 명령어 옵션 확인 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.j.. 2025. 1. 17. nvm 설치 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 .. 2025. 1. 17. 이전 1 다음