ts-node 라이브러리란?

 ts-node project. It allows you to run TypeScript in Node. js directly, without having to run the files through the TypeScript compiler (tsc)

Node.js 상에서 TypeScript Compiler를 통하지 않고도, 직접 TypeScript를 실행시키는 역할을 해줌


설치법

# Locally in your project. 
npm install -D typescript
npm install -D ts-node
 
# Or globally with TypeScript. 
npm install -g typescript
npm install -g ts-node

사용법


# Execute a script as `node` + `tsc`. 
ts-node script.ts
 
# Starts a TypeScript REPL. 
ts-node
 
# Execute code with TypeScript. 
ts-node -e 'console.log("Hello, world!")'
 
# Execute, and print, code with TypeScript. 
ts-node -p -e '"Hello, world!"'
 
# Pipe scripts to execute with TypeScript. 
echo 'console.log("Hello, world!")' | ts-node
 
# Equivalent to ts-node --script-mode 
ts-node-script scripts.ts
 
# Equivalent to ts-node --transpile-only 
ts-node-transpile-only scripts.ts

사이트 경로

https://www.npmjs.com/package/ts-node

  • 네이버 블러그 공유하기
  • 네이버 밴드에 공유하기
  • 페이스북 공유하기
  • 카카오스토리 공유하기