Externally indexed torrent
If you are the original uploader, contact staff to have it moved to your account
Textbook in PDF format
Learn TypeScript from beginners to advanced Level with projects.
In this book we will learn TypeScript, which is a superset of JavaScript. It was built by Microsoft to fix the issues of loose binding in JavaScript. After learing about TypeScript, we will learn to use it in projects.
We will create the below projects:
• TypeScript Project
• ReactJS with TypeScript Project
• NodeJS with TypeScript Project
• React Redux TypeScript Project
Now, with TypeScript we add all new features in JavaScript, through which we can avoid type error even before they occur. But the problem with TypeScript is that, Browser can’t execute it. The browser understands only JavaScript, so the TypeScript needs to be compiled to JavaScript.
React is the most popular JavaScript library. Almost all production projects are made in ReactJS or Angular. In Angular you have to always write your code in TypeScript, but in React that is not the case. But we can easily add TypeScript to a ReactJS project, by specifying it in the create-react-app. In this chapter we are going to create two ReactJS apps with TypeScript.
The following topics are covered in the book:
TypeScript Basics
TypeScript Compiler
Advanced Types
Generics & Decorators
To-do List with TypeScript
Drag drop Project
Modules & Webpack
React TypeScript Project
React React with TypeScript Project