Blog Content

  • TypeScript 컴파일 실행

    Category jQuery | javascript | CSS on 2022. 8. 28. 04:11

    타입스크립트를 자바스크립트로 컴파일 하는 방법이다 프로젝트를 생성한다 타입스크립트를 설치할 폴더에 들어가서 명령어를 입력한다 npm install typescript visual studio code 프로그램을 실행해서 hello.ts 파일을 추가한다 추가한 파일에 코드를 입력한다 ts 파일을 js로 컴파일 한다 tsc hello.ts 를 입력하면 프로젝트 폴더에 hello.js 파일이 생긴다 node hello.js 명령어를 입력하면 hello.js 파일이 실행된다 컴파일 + 실행을 동시에 하는 방법이 있다 npm i -g ts-node 설치를 한다 설치가 끝났으면 실행한다 ts-node hello.ts 결과 확인

    Read more
  • TypeScript 개발환경 설치

    Category jQuery | javascript | CSS on 2022. 8. 25. 01:11

    비주얼 스튜디오 코드 (visual studio code) 설치하기 : https://code.visualstudio.com/ Visual Studio Code - Code Editing. Redefined Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. code.visualstudio.com 위에 사이트에 들어가서 다운을 받아 설치를 한다 타입 스크립트 설치하기 : ..

    Read more
이전 1 다음