0.2.2 • Published 4 years ago

xtsr v0.2.2

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

XTsr

EXtreme-fast Typescript Runner.

A CLI program that runs your Typescript file directly in Nodejs. IMMEDIATLY. ⚡️

Install

npm install -g xtsr

Usage

Run typescript file simply

// sample.ts
console.log('Hello world')
> tsr sample.ts
Hello world

Run typescript file with arguments

// sample.ts
console.log(process.argv.slice(2))
> tsr sample.ts --foo --bar=baz
[
  '--foo',
  '--bar=baz'
]
0.2.2

4 years ago

0.2.1

4 years ago

0.2.0

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago

0.0.1

4 years ago