Book Image

Advanced TypeScript Programming Projects

By : Peter O'Hanlon
Book Image

Advanced TypeScript Programming Projects

By: Peter O'Hanlon

Overview of this book

With the demand for ever more complex websites, the need to write robust, standard-compliant JavaScript has never been greater. TypeScript is modern JavaScript with the support of a first-class type system, which makes it simpler to write complex web systems. With this book, you’ll explore core concepts and learn by building a series of websites and TypeScript apps. You’ll start with an introduction to TypeScript features that are often overlooked in other books, before moving on to creating a simple markdown parser. You’ll then explore React and get up to speed with creating a client-side contacts manager. Next, the book will help you discover the Angular framework and use the MEAN stack to create a photo gallery. Later sections will assist you in creating a GraphQL Angular Todo app and then writing a Socket.IO chatroom. The book will also lead you through developing your final Angular project which is a mapping app. As you progress, you’ll gain insights into React with Docker and microservices. You’ll even focus on how to build an image classification program with machine learning using TensorFlow. Finally, you’ll learn to combine TypeScript and C# to create an ASP.NET Core-based music library app. By the end of this book, you’ll be able to confidently use TypeScript 3.0 and different JavaScript frameworks to build high-quality apps.
Table of Contents (13 chapters)

Chapter 1

  1. Using union types, we can write a method that accepts either the FahrenheitToCelsius class or the CelsiusToFahrenheit class:
class Converter {
Convert(temperature : number, converter : FahrenheitToCelsius | CelsiusToFahrenheit) : number {
return converter.Convert(temperature);
}
}

let converter = new Converter();
console.log(converter.Convert(32, new CelsiusToFahrenheit()));
  1. To accept a key/value pair, we need to use a map. Adding our records to it would look something like this:
class Commands {
private commands = new Map<string, Command>();
public Add(...commands : Command[]) {
commands.forEach(command => {
this.Add(command);
})
}
public Add(command : Command) {
this.commands.set(command.Name, command);
}
}

let command = new Commands();
command.Add(new Command("Command1", new Function()),...