Master The Art Of Using Typescript Without The Compile Step

Written by theBenForce | Published 2021/04/17
Tech Story Tags: typescript | scripting | bash | backend | nodejs | software-development | coding | web-monetization

TLDR With just a few tricks you can start writing your scripts in TypeScript. The only magic that's required is the first line needs to be a shebang statement. Set up your environment and globally install node and npm packages to create your script. Then mark the script as executable and use bash to execute the contents of the file. You can now directly execute your typescript file using bash or node-node-generated-script. Using bash to run your TypeScript script is easy to do with bash.via the TL;DR App

If you're like me you create scripts to automate things all the time. While you can do quite a bit with 
bash
, it's just a lot easier to use your primary language--in this case TypeScript. With just a few tricks you can start writing your scripts in TypeScript.

Setup your Environment

First you need to get your environment setup. I'm going to assume you already have node and npm installed and your globally installed packages are in your path. Once you have that setup, globally install 
ts-node
.
npm i -g ts-node

Create the Script

If you've made it this far then it's time to create your script. The only magic that's required is the first line needs to be a shebang statement.
#!/usr/bin/env ts-node
This tells bash that it should use 
ts-node
 to execute the contents of the file. Here's my sample script.
#!/usr/bin/env ts-node

function test(message: string) {
	console.info(message);
}

test("Hello TypeScript!");
Now mark the script as executable.
chmod +x ./test.ts
And now you can directly execute your typescript file!

Written by theBenForce | 4x AWS Certified Senior Software Engineer. I write about architecture, infrastructure as code, and automation.
Published by HackerNoon on 2021/04/17