DEV Community

Cover image for Getting Started with TypeScript for JavaScript Developers
Alex Roor
Alex Roor

Posted on

Getting Started with TypeScript for JavaScript Developers

TypeScript has been gaining massive popularity in the JavaScript community, and for good reason. It offers a type-safe layer on top of JavaScript, which helps developers catch errors early and write more robust code. In this article, we'll cover the basics of TypeScript and show you how to get started.

What is TypeScript?
TypeScript is a strongly typed, object-oriented, compiled language. It was developed and maintained by Microsoft and adds static typing to JavaScript. TypeScript code is transpiled to plain JavaScript, ensuring compatibility with all JavaScript engines.

Why Use TypeScript?
Early Error Detection: TypeScript's static type-checking can catch errors during development rather than at runtime.
Improved IDE Support: Enhanced autocompletion, navigation, and refactoring in modern editors like VS Code.
Better Documentation: Types act as documentation for your code, making it easier to understand and maintain.
Setting Up TypeScript
Install TypeScript

First, you'll need to install TypeScript globally on your machine:

npm install -g typescript
Initialize a TypeScript Project

Create a new directory for your project and navigate into it. Then, initialize a new TypeScript project:

mkdir my-typescript-project
cd my-typescript-project
tsc --init
This command creates a tsconfig.json file, which is used to configure the TypeScript compiler.

Create Your First TypeScript File

Create a file named index.ts:

// index.ts
const greeting: string = "Hello, TypeScript!";
console.log(greeting);
Compile TypeScript to JavaScript

Run the TypeScript compiler to transpile your index.ts file to JavaScript:

tsc
This command generates an index.js file with the compiled JavaScript code.

Run the JavaScript File

You can now run the generated JavaScript file using Node.js:

node index.js
TypeScript Basics
Types
TypeScript provides several basic types: string, number, boolean, array, tuple, enum, any, void, null, and undefined.

let isDone: boolean = false;
let decimal: number = 6;
let color: string = "blue";
let list: number[] = [1, 2, 3];
let x: [string, number];
x = ["hello", 10]; // OK
Functions
TypeScript allows you to specify the types of function parameters and the return type.

function add(a: number, b: number): number {
return a + b;
}
Interfaces
Interfaces define the shape of an object. They can be used to enforce a structure in your code.

interface Person {
firstName: string;
lastName: string;
}

function greet(person: Person) {
return Hello, ${person.firstName} ${person.lastName};
}

let user = { firstName: "John", lastName: "Doe" };
console.log(greet(user));
Classes
TypeScript supports object-oriented programming with classes and interfaces.

class Animal {
private name: string;

constructor(name: string) {
this.name = name;
}

move(distanceInMeters: number = 0) {
console.log(${this.name} moved ${distanceInMeters}m.);
}
}

let dog = new Animal("Dog");
dog.move(10);
Advanced Features
Generics
Generics provide a way to create reusable components that can work with a variety of types.

function identity(arg: T): T {
return arg;
}

let output = identity("myString");
let output2 = identity(100);
Modules
TypeScript supports ES6 modules, allowing you to organize your code into reusable pieces.

// math.ts
export function add(x: number, y: number): number {
return x + y;
}

// index.ts
import { add } from './math';

console.log(add(5, 3));
Decorators
Decorators provide a way to add annotations and metadata to classes and methods. They are an experimental feature and require enabling in the tsconfig.json.

function readonly(target: any, propertyKey: string, descriptor: PropertyDescriptor) {
descriptor.writable = false;
}

class Greeter {
greeting: string;

constructor(message: string) {
this.greeting = message;
}

@readonly
greet() {
return Hello, ${this.greeting};
}
}

Conclusion
TypeScript enhances JavaScript development by adding type safety and other useful features. It's easy to get started with TypeScript, and the benefits it brings to your codebase can be substantial. Whether you're working on a small project or a large application, TypeScript can help you write more maintainable and error-free code.

Start exploring TypeScript today and see how it can improve your development workflow. Happy coding!

Top comments (0)