Better option : TypeScript.

Better option : TypeScript.

ยท

3 min read

Well, Its been a while that we are spouting about javaScript on this blog channel, lets discuss something diffrent but easy at the same time right? Well if you know javaScript very well(which you should by now if you guys have been consistently reading our blogs and obviously practicing it as well) then TypeScript is something that you have learned almost completely(don't mark my words!).

TypeScript is a superset of JavaScript, which means that any valid JavaScript code is also valid TypeScript code. In this blog, we'll explore the very basics of TypeScript to help you get started on your journey to mastering this powerful language.

TypeScript Features:

Static Typing: TypeScript allows developers to specify types for variables, function parameters, return values, and more. Types can be primitive types (e.g., number, string, boolean) or custom types defined using interfaces or classes.

Interfaces: Interfaces in TypeScript define the shape of objects, specifying which properties and methods they should have.

Classes: TypeScript supports object-oriented programming concepts such as classes, inheritance, encapsulation, and polymorphism which are 4 important pillars.

Enums: Enums (enumerations) allow developers to define a set of named constants, making it easier to work with symbolic values.

Generics: Generics in TypeScript enable writing reusable, type-safe functions and data structures by allowing types to be parameterized.

TypeScript in Real-world Projects:

    • Many companies and organizations, including Microsoft, Google, Airbnb, and Slack, have adopted TypeScript for their web development projects.

      • TypeScript's above features make it well-suited for building industry-level applications.

let's see the basics of TypeScript with some simple examples:

1. Static Typing:

In TypeScript, you can declare the type of a variable explicitly. This helps catch type-related errors during development.

let message: string = "Hello, TypeScript!";
console.log(message);

2. Interfaces:

Interfaces define the structure of objects, specifying which properties and methods they should have.

interface Car {
  // Interface properties
  brand: string;
  model: string;
  year: number;
}

class MyCar implements Car {
 brand = "Volvo";
 model = "XC90";
 year = "2022";
  }

3. Classes:

TypeScript supports object-oriented programming concepts like classes.

class Animal {
  name: string;

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

  sound(): string {
    return "Some sound";
  }
}

class Dog extends Animal {
  sound(): string {
    return "Woof!";
  }
}

const dog = new Dog("Buddy");
console.log(dog.sound()); // Output = Woof!

4. Enums:

Enums allow developers to define a set of named constants.

Direction {
  Up,
  Down,
  Left,
  Right,
}

let playerDirection: Direction = Direction.Right;
console.log(playerDirection);

Getting started with Typescript in nodejs

Initialize your project: Create a new directory for your project and navigate into it using your terminal or command prompt.

Install TypeScript: Run the following command to install TypeScript globally on your system:

Copy codenpm install -g typescript

Write your TypeScript code: Create a .ts file (e.g., index.ts) in your project directory and start writing your TypeScript code. For example:

typescriptCopy codefunction greet(name: string) {
  return `Hello, ${name}!`;
}

console.log(greet("Node.js with TypeScript"));

Compile TypeScript to JavaScript: Compile your TypeScript code to JavaScript using the TypeScript compiler (tsc). Run the following command in your terminal:

Copy codetsc

This will compile all TypeScript files in your project directory file. By default, it will generate corresponding JavaScript files with the same name but with the .js extension.

Run your Node.js application: Once your TypeScript code is compiled to JavaScript, you can run your Node.js application as usual. For example:

Copy codenode index.js

Conclusion:

Thats it! TypeScript is nothing but javascript with some additional features which provides developers with powerful tools for building scalable and maintainable web applications. By combining the features of JavaScript with static typing and advanced features, TypeScript helps catch errors early(at compile-time), improve code readability, and increase developer productivity.

Let me know your thoughts in the comments below.

#Explore. Code. Evolve.

Happy coding! ๐Ÿ˜„

ย