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 typescriptnpm install -D ts-node# Or globally with TypeScript.npm install -g typescriptnpm 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-modets-node-script scripts.ts# Equivalent to ts-node --transpile-onlyts-node-transpile-only scripts.ts
사이트 경로
https://www.npmjs.com/package/ts-node
'[DEV] App Dev ∕ Web Back > ETC' 카테고리의 다른 글
[npm] fastify란? (0) | 2020.11.24 |
---|---|
[npm] NestCloud란? (0) | 2020.11.23 |
[npm] Apollo란? (0) | 2020.11.23 |
Akita 상태관리 라이브러리에 대한 고찰 (0) | 2020.10.12 |
[TS] ngRok : 간편하게 외부에서 localhost:# 으로 접속 가능 (0) | 2020.09.10 |
최근댓글