Programming/TS

[Typescript] Typescript 파일 실행시키기

w00se 2021. 6. 13. 19:02

https://pixabay.com/ko/photos/오래-된-마-건물-거리-황혼-6300696/

프로젝트를 시작하기 전 Typescript를 연습할 필요가 있어 Typescript를 실행할 수 있는 환경에 대해 알아보았습니다.

여러 방법이 존재하겠지만 간단히 연습할 수 있는 방법은 아래 두 가지가 있는 거 같습니다.

 

1. tsc로 Typescript 파일을 Javascript 파일로 컴파일한 후 실행시키기

https://code.visualstudio.com/docs/typescript/typescript-compiling

 

TypeScript Compiling with Visual Studio Code

Learn about TypeScript compiling with Visual Studio Code.

code.visualstudio.com

설치 방법은 아래와 같습니다.

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

 

TypeStrong/ts-node

TypeScript execution and REPL for node.js. Contribute to TypeStrong/ts-node development by creating an account on GitHub.

github.com

 

ts-node를 이용하면 추가 과정 없이 바로 ts파일을 실행시켜줍니다.

 

설치 방법은 아래와 같습니다.

npm install -D typescript
npm install -D ts-node

 

사용 예시는 아래와 같습니다.

npx ts-node practice_typescript.ts

 


읽어주셔서 감사합니다.

혹시 본 게시글 중 틀린 내용이 있다면 댓글을 통해 알려주세요 :)