commands.sh

ts-node

all

Run TypeScript code directly, without any compiling.

More info →

Options (3)

-e, --evalboolean

Evaluate TypeScript code passed as a literal

Example: ts-node {{[-e|--eval]}} '{{console.log("Hello World")}}'
-T, --transpileOnlyboolean

Transpile a TypeScript file to JavaScript without executing it

Example: ts-node {{[-T|--transpileOnly]}} {{path/to/file.ts}}
-h, --helpboolean

Display help

Example: ts-node {{[-h|--help]}}

Examples (6)

Execute a TypeScript file without compiling (Node + `tsc`)

ts-node path/to/file.ts

Execute a TypeScript file without loading `tsconfig.json`

ts-node --skipProject path/to/file.ts

Evaluate TypeScript code passed as a literal

ts-node [-e|--eval] 'console.log("Hello World")'

Execute a TypeScript file in script mode

ts-node --script-mode path/to/file.ts

Transpile a TypeScript file to JavaScript without executing it

ts-node [-T|--transpileOnly] path/to/file.ts

Display help

ts-node [-h|--help]
made by @shridhargupta | data from tldr-pages