System Grab Bag

View all TLDR pages from common (or from all pages)

ts-node

Run TypeScript code directly, without any compiling. More information: https://typestrong.org/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:
    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

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.