mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
34 lines
794 B
Plaintext
34 lines
794 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# ts-node
|
|
|
|
> Run TypeScript code directly, without any compiling.
|
|
> More information: <https://typestrong.org/ts-node/docs/options/>.
|
|
|
|
- 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]}}`
|