TypeScript

TypeScript

  • Developed and maintained by Microsoft
  • Strict syntactical superset of JavaScript
  • Rapidly becoming Standard
  • Designed for development of large applications

Pros and cons

  • Improves code maintainability and readability
  • Awesome documentation for your app
  • Static analysis (IDE support + compilation)
  • Syntax sugar
  • More verbose
  • Language configuration
  • Separate package

How to get started

npm install (-g) typescript

Compiling code

tsc fileName.ts

Project should contain

tsconfig.json

TSLint (deprecated) / ESLint

Demo

Useful links

Typescript

By Pavel Razuvalau

Typescript

  • 448