프로젝트를 시작하기 전 Typescript를 연습할 필요가 있어 Typescript를 실행할 수 있는 환경에 대해 알아보았습니다.
여러 방법이 존재하겠지만 간단히 연습할 수 있는 방법은 아래 두 가지가 있는 거 같습니다.
1. tsc로 Typescript 파일을 Javascript 파일로 컴파일한 후 실행시키기
https://code.visualstudio.com/docs/typescript/typescript-compiling
설치 방법은 아래와 같습니다.
npm install -D typescript
tsc로 ts 파일을 컴파일할 경우 동일한 이름의 js 파일이 생성됩니다.
사용 예시는 아래와 같습니다.
npx tsc practice_typescript.ts
node practice_typescript.js
2. ts-node로 실행시키기
https://github.com/TypeStrong/ts-node
ts-node를 이용하면 추가 과정 없이 바로 ts파일을 실행시켜줍니다.
설치 방법은 아래와 같습니다.
npm install -D typescript
npm install -D ts-node
사용 예시는 아래와 같습니다.
npx ts-node practice_typescript.ts
읽어주셔서 감사합니다.
혹시 본 게시글 중 틀린 내용이 있다면 댓글을 통해 알려주세요 :)
'Programming > TS' 카테고리의 다른 글
[Typescript] React with Typescript 2 (useReducer) (0) | 2021.07.10 |
---|---|
[Typescript] React with Typescript 1 (0) | 2021.06.20 |
[Typescript] Typescript Function, Interface, Object (0) | 2021.06.19 |
[Typescript] Typescript 타입 (0) | 2021.06.15 |