반응형

1. typescript 실행시 필요사항

1) node.js

    - 필요 이유 : typescript가 node.js 로 설치 됩니다.

 2) typescript

    - 용   도 : typescript를 javascript로 변경하는 컴파일러를 제공  합니다

    - 버   전 : 2.7.2

    - 설치 방법 : npm install -g typescript@2.7.2 (전역으로 설치)

   npm install -g typescript 로 최신버젼 설치 가능

    작성기준 typescript@4.2.4

 2) ts-node

    - 용   도 : typescript를 바로 실행하는데 사용 됩니다

    - 버   전 : 3.3.0

    - 설   치 : npm install -g ts-node@3.3.0

    npm install -g ts-node 로 최신버젼 설치 가능

    작성기준 ts-node@9.1.1

 

2. typescript 실행

  1) Sample 코드

let hello: string = "hello typescript!";
console.log(hello);

 

  2) 실행 방법

    (1) 파일 컴파일 실행

      - tsc(TypeScript Compiler)

      - tsc 로 컴파일하고 node로 실행

      > tsc .\hello.ts

      > node.\hello.js

      hello typescript!

 

    (2) 파일 직접 실행

      - ts-node로 바로 typescript 실행

      > ts-node .\hello.ts

      hello typescript!

 

 

   (3) 프로젝트 단위로 실행 

      - 프로젝트 단위로 실행 할때는 tsc 명령어 만으로 컴파일 가능. 

      A. tsc 만 실행 할경우 

        - 프로젝트 root 디렉토리에 tsconfig.json 파일이 존재한다면 해당 파일을 읽어 프로젝트 전체를 대상으로

          컴파일 

      B. tsc --outdir ./dist 로 실행 할경우

        - --outdir를 통하여 컴파일 결과가 담김 디렉토리를 선택하면 해당 디렉토리로 컴과일 결과가 저장

반응형

'Languague > Typescript' 카테고리의 다른 글

[typescript] typescript gitbook 튜토리얼 추천  (0) 2021.04.16

+ Recent posts