ts-node: add page (#5911)

This commit is contained in:
SpiderMath 2021-05-12 22:36:54 +05:30 committed by GitHub
parent 145ae4905e
commit 4416b0df9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

28
pages/common/ts-node.md Normal file
View File

@ -0,0 +1,28 @@
# ts-node
> Run TypeScript code directly, without any compiling.
> More information: <https://www.npmjs.com/package/ts-node>.
- Execute a TypeScript file without compiling (`node` + `tsc`):
`ts-node {{path/to/file.ts}}`
- Execute a TypeScript file without loading `tsconfig.json`:
`ts-node --skip-project {{path/to/file.ts}}`
- Evaluate TypeScript code passed as a literal on the command-line:
`ts-node --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 --transpile-only {{path/to/file.ts}}`
- Display TS-Node help:
`ts-node --help`