게으른 나에게

[TypeScript] - 설치 본문

My Study/TypeScript

[TypeScript] - 설치

handbefore 2024. 10. 13. 18:23

TypeScript를 설치하는 방법: 두 가지

  • npm을 이용한 설치 (Node.js 패키지 매니저)
  • TypeScript의 Visual Studio 플러그인 설치

Visual Studio 2017과 Visual Studio 2015 Update 3는 기본적으로 Typescript를 포함하고 있음.

 


npm을 이용한 설치 (Node.js 패키지 매니저)

 

1. node.js 설치

https://nodejs.org/en

 

Node.js — Run JavaScript Everywhere

Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.

nodejs.org

 

2. TypeScript 공식 웹 사이트 방문

https://www.typescriptlang.org/

 

JavaScript With Syntax For Types.

TypeScript extends JavaScript by adding types to the language. TypeScript speeds up your development experience by catching errors and providing fixes before you even run your code.

www.typescriptlang.org

download TypeScript

설치 명령어 확인 가능

 

3. install (터미널)

빈 package.json 파일 먼저 생성

npm init -y

 

(특정 프로젝트 한해서 / 시스템 전체)

npm install typescript
npm install -g typescript

 

4. TS -> JS 컴파일

npx tsc 파일명

 

'My Study > TypeScript' 카테고리의 다른 글

[TypeScript] - 타입을 가진 함수  (0) 2024.10.13
[TypeScript] - 타입 별칭(Type Alias)  (0) 2024.10.13
[TypeScript] - 유니온 타입  (1) 2024.10.13
[TypeScript] - 기본형 타입  (0) 2024.10.13
[TypeScript] - 기본개념  (1) 2024.10.13