TypeScript execution and REPL for node.js, with source map support. Works with
typescript@>=2.0
.
# Locally in your project
npm install -D ts-node
npm install -D typescript
# Or globally (not recommended)
npm install -g ts-node
npm install -g typescript
Tip: Installing modules locally allows you to control and share the versions through package.json
.
# 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 '"Hello, world!"'
# Pipe scripts to execute with TypeScript.
echo "console.log('Hello, world!')" | ts-node
You can require ts-node
and register the loader for future requires by using require('ts-node').register({ /* options */ })
. You can also use file shortcuts - node -r ts-node/register
or node -r ts-node/register/transpile-only
- depending on your preferences.
Note: If you need to use advanced node.js CLI arguments (e.g. --inspect
), use them with node -r ts-node/register
instead of the ts-node
CLI.
mocha --require ts-node/register --watch-extensions ts,tsx "test/**/*.{ts,tsx}" [...args]
Note: --watch-extensions
is only used in --watch
mode.
ts-node node_modules/tape/bin/tape [...args]
# Create a `gulpfile.ts` and run `gulp`.
gulp
Create a new node.js configuration, add -r ts-node/register
to node args and move the program
to the args
list (so VS Code doesn't look for outFiles
).
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"runtimeArgs": [
"-r",
"ts-node/register"
],
"args": [
"${workspaceFolder}/index.ts"
]
}
TypeScript Node works by registering the TypeScript compiler for .tsx?
and .jsx?
(when allowJs == true
) extensions. When node.js has an extension registered (via require.extensions
), it will use the extension internally for module resolution. When an extension is unknown to node.js, it handles the file as .js
(JavaScript). By default, TypeScript Node avoids compiling files in /node_modules/
for three reasons:
- Modules should always be published in a format node.js can consume
- Transpiling the entire dependency tree will make your project slower
- Differing behaviours between TypeScript and node.js (e.g. ES2015 modules) can result in a project that works until you decide to support a feature natively from node.js
P.S. This means if you don't register an extension, it is compiled as JavaScript. When ts-node
is used with allowJs
, JavaScript files are transpiled using the TypeScript compiler.
Typescript Node loads tsconfig.json
automatically. Use --skip-project
to the loading tsconfig.json
.
Tip: You can use ts-node
together with tsconfig-paths to load modules according to the paths
section in tsconfig.json
.
You can set options by passing them before the script path, via programmatic usage or via environment variables.
ts-node --compiler ntypescript --project src/tsconfig.json hello-world.ts
Supports --print
, --eval
and --require
from node.js CLI options.
--help
Prints help text--version
Prints version information
Environment variable denoted in parentheses.
-T, --transpileOnly
Use TypeScript's fastertranspileModule
(TS_NODE_TRANSPILE_ONLY
, default:false
)--cacheDirectory
Configure the output file cache directory (TS_NODE_CACHE_DIRECTORY
)-I, --ignore [pattern]
Override the path patterns to skip compilation (TS_NODE_IGNORE
, default:/node_modules/
)-P, --project [path]
Path to TypeScript JSON project file (TS_NODE_PROJECT
)-C, --compiler [name]
Specify a custom TypeScript compiler (TS_NODE_COMPILER
, default:typescript
)-D, --ignoreDiagnostics [code]
Ignore TypeScript warnings by diagnostic code (TS_NODE_IGNORE_DIAGNOSTICS
)-O, --compilerOptions [opts]
JSON object to merge with compiler options (TS_NODE_COMPILER_OPTIONS
)--files
Load files fromtsconfig.json
on startup (TS_NODE_FILES
, default:false
)--pretty
Use pretty diagnostic formatter (TS_NODE_PRETTY
, default:false
)--no-cache
Disable the local TypeScript Node cache (TS_NODE_CACHE
, default:true
)--skip-project
Skip project config resolution and loading (TS_NODE_SKIP_PROJECT
, default:false
)--skip-ignore
Skip ignore checks (TS_NODE_SKIP_IGNORE
, default:false
)
transformers
An array of transformers to pass to TypeScriptreadFile
Custom TypeScript-compatible file reading functionfileExists
Custom TypeScript-compatible file existence function
TypeScript Node does not use files
, include
or exclude
, by default. This is because a large majority projects do not use all of the files in a project directory (e.g. Gulpfile.ts
, runtime vs tests) and parsing every file for types slows startup time. Instead, ts-node
starts with the script file (e.g. ts-node index.ts
) and TypeScript resolves dependencies based on imports and references.
For global definitions, you can use typeRoots
:
{
"compilerOptions": {
"typeRoots" : ["./node_modules/@types", "./typings"]
}
}
A types package is a folder with a file called
index.d.ts
or a folder with apackage.json
that has a types field. -- TypeScript Handbook
For module definitions, you can use paths
:
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"custom-module-type": ["types/custom-module-type"]
}
}
}
Tip: If you must use files
, enable --files
flags or set TS_NODE_FILES=true
.
TypeScript Node compiles source code via require()
, watching files and code reloads are out of scope for the project. If you want to restart the ts-node
process on file change, existing node.js tools such as nodemon, onchange and node-dev work.
There's also ts-node-dev
, a modified version of node-dev
using ts-node
for compilation and won't restart the process on file change.
MIT