Your First TypeScript Program: A Step-by-Step Guide
Posted on March 31, 2025 • 6 min read • 1,160 wordsLearn how to write your first TypeScript program with this step-by-step guide, covering setup, syntax, and key TypeScript features.
TypeScript is a powerful, statically typed superset of JavaScript that brings a wealth of advantages to web development, including type safety, enhanced tooling, and better code readability.
Before diving into writing your first TypeScript program, it’s essential to understand what TypeScript is and why you should use it.
TypeScript is an open-source programming language developed by Microsoft that builds on JavaScript by adding optional static typing and other advanced features. It allows developers to catch errors at compile-time rather than runtime, providing a more predictable and safer development experience.
Unlike JavaScript, which is dynamically typed, TypeScript’s static typing can help you prevent common bugs in your code. It also enables better tooling and offers enhanced code completion, navigation, and refactoring support in IDEs like Visual Studio Code.
There are several reasons why TypeScript has become a go-to language for modern web development:
With that in mind, let’s start by writing your first TypeScript program!
Before you can start coding in TypeScript, you’ll need to set up your development environment. This process involves installing Node.js, TypeScript, and a code editor.
TypeScript runs on top of Node.js, so you’ll need to have Node.js installed. Follow these steps to install Node.js:
To verify the installation, open a terminal (or command prompt) and run:
node -v
This will print the installed version of Node.js.
Once Node.js is installed, you can easily install TypeScript globally using npm (Node Package Manager):
npm install -g typescript
To verify the installation, run:
tsc -v
This will print the version of TypeScript that was installed.
For TypeScript development, it’s highly recommended to use Visual Studio Code (VS Code), as it has built-in support for TypeScript.
Now that your development environment is set up, you’re ready to write your first TypeScript program!
Let’s break down the process of writing a simple TypeScript program that prints “Hello, TypeScript!” to the console.
Start by creating a new folder for your project. Inside this folder, create a new file with a .ts
extension (e.g., app.ts
). The .ts
extension signifies that the file contains TypeScript code.
Now, open the app.ts
file and add the following code:
// app.ts
function greet(name: string): string {
return `Hello, ${name}! Welcome to TypeScript.`;
}
let name = "Alice";
console.log(greet(name));
In this code:
greet
function takes a parameter name
of type string
and returns a greeting message.greet
function with the string "Alice"
and print the result to the console using console.log()
.Here are a few key TypeScript concepts used in the code:
name: string
specifies that the name
argument must be a string. This is TypeScript’s type annotation feature, which ensures that only valid types are passed to the function.let name = "Alice";
, TypeScript automatically infers that name
is a string.Since browsers only understand JavaScript, you need to compile your TypeScript code into JavaScript. TypeScript provides a compiler (tsc) for this purpose.
To compile the app.ts
file into JavaScript, open your terminal, navigate to the folder containing the app.ts
file, and run:
tsc app.ts
This will generate a new file called app.js
in the same folder, which contains the JavaScript version of your code.
Open the app.js
file, and you’ll see the compiled JavaScript code:
// app.js
function greet(name) {
return "Hello, " + name + "! Welcome to TypeScript.";
}
var name = "Alice";
console.log(greet(name));
Notice how TypeScript has removed the type annotations (name: string
) and converted the TypeScript code into regular JavaScript.
To run the JavaScript code, simply use Node.js:
node app.js
This will output:
Hello, Alice! Welcome to TypeScript.
Congratulations! You’ve just written, compiled, and run your first TypeScript program.
Now that you’ve written a simple TypeScript program, let’s explore some key features of TypeScript that you can use to improve your coding experience.
Static typing is one of the primary benefits of TypeScript. You can explicitly specify types for variables, function parameters, and return values. Here are some examples:
let age: number = 25;
let isActive: boolean = true;
let username: string = "Alice";
let numbers: number[] = [1, 2, 3];
let tuple: [string, number] = ["Alice", 25];
Enums allow you to define a set of named constants:
enum Color {
Red,
Green,
Blue
}
let favoriteColor: Color = Color.Green;
TypeScript allows you to define custom types using interfaces. Interfaces are especially useful for defining the shape of objects.
interface Person {
name: string;
age: number;
}
let person: Person = {
name: "Alice",
age: 25
};
TypeScript supports object-oriented programming with classes and inheritance. Here’s an example:
class Animal {
constructor(public name: string) {}
speak() {
console.log(`${this.name} makes a noise.`);
}
}
class Dog extends Animal {
speak() {
console.log(`${this.name} barks.`);
}
}
let dog = new Dog("Buddy");
dog.speak();
Type aliases allow you to create a new name for a type. This is useful for complex types or reusable type definitions.
type Point = { x: number; y: number };
let point: Point = { x: 10, y: 20 };
TypeScript is a powerful tool that enhances JavaScript development by providing static typing, better tooling, and improved code quality. By following this guide, you’ve written your first TypeScript program, compiled it into JavaScript, and run it using Node.js.
As you continue to explore TypeScript, you’ll uncover more features such as generics, decorators, and modules, which will help you write cleaner, more maintainable code. Embrace TypeScript for your next web development project, and you’ll quickly see the benefits it brings to your workflow.