Mastering TypeScript [2015, ENG]

seeders: 5
leechers: 0
Added 10 years ago by Alex Mill in Other

Download Fast Safe Anonymous
movies, software, shows...

Files

Mastering TypeScript [2015, ENG] (Size: 387.53 MB)
  01 Getting Started
  001 The Course Overview.mp4 6.48 MB
  002 Sample Application Overview.mp4 5.89 MB
  003 Compiling TypeScript in the Sample Application.mp4 9.5 MB
  02 Deploying the Type System
  001 Implicit or Explicit Types.mp4 11.22 MB
  002 Avoiding the any Type.mp4 7.84 MB
  003 Being Aware of Structural Typing.mp4 4.01 MB
  004 Type System Troubles.mp4 5.43 MB
  005 Compiler Options for Added Support.mp4 3.43 MB
  006 Enforcing Rules and Coding Standards.mp4 13.27 MB
  03 Moving to ES6 Classes
  001 Introduction Before Moving.mp4 6.12 MB
  002 Class-like JavaScript Patterns to TypeScript Part 1.mp4 17.03 MB
  003 Class-like JavaScript Patterns to TypeScript Part 2.mp4 15.91 MB
  004 Static Class-like Patterns in TypeScript.mp4 8.56 MB
  005 Shortening a Class with Parameter Properties.mp4 6.45 MB
  006 When to Use Arrow Function Properties.mp4 12.08 MB
  04 Interacting with the Type System
  001 Assert and Guard.mp4 11.84 MB
  002 Making the Most of Type Guarding.mp4 10.09 MB
  003 Multiple Function Signatures.mp4 19.63 MB
  004 Rest and Spread.mp4 3.64 MB
  005 Extending Built-in Types.mp4 5.98 MB
  006 Code Refactoring.mp4 7.62 MB
  05 Representing JavaScript Libraries
  001 Definition Files.mp4 6.37 MB
  002 Writing a Definition File.mp4 11.56 MB
  003 Strong Typing JavaScript Libraries on the Run.mp4 11.39 MB
  004 Downloading and Managing Definition Files.mp4 17.87 MB
  005 Included Definition Files.mp4 11.96 MB
  06 Language Features for Code Improvement
  001 Making the Most of let and const.mp4 7.19 MB
  002 Working with Strings.mp4 10.21 MB
  003 enums.mp4 10.81 MB
  004 const enums Versus enums.mp4 6.75 MB
  005 Moving to ES6 Modules.mp4 19.39 MB
  006 Destructuring.mp4 5.93 MB
  07 Advanced ES6 and ES7 Features
  001 Introduction to Generators.mp4 10.8 MB
  002 Improving Performance and Efficiency with Generators.mp4 9.56 MB
  003 Easier Asynchronous Code with asyncawait.mp4 6.94 MB
  004 Harnessing the Power of Decorators.mp4 12.83 MB
  005 Advanced Decorators.mp4 6.76 MB
  08 Bridging Statically Typed Gaps
  001 Sharing Code Across Applications.mp4 6.75 MB
  002 Bridging with Interfaces.mp4 10.37 MB
  003 Bridging with Code Generation.mp4 4.39 MB
  004 Using TSX Files.mp4 7.64 MB

Description


Обучающие видео » Компьютерные видеоуроки и обучающие интерактивные DVD » Программирование (видеоуроки)

Mastering TypeScript
Explore TypeScript in depth with detailed examples and put it all into practice by building a project

Год выпуска: 12/2015
Производитель: Packt Publishing / Udemy
Сайт производителя: packtpub.com/web-development/mastering-typescript-video
Автор: David Sherret
Продолжительность: 3:13
Тип раздаваемого материала: Видеоклипы
Язык: Английский
Описание: Writing large applications in JavaScript is a challenge. TypeScript brings JavaScript down to Earth by providing optional static typing and future JavaScript features today.
TypeScript gives the developer instant feedback on the code they are writing in order to catch mistakes earlier in the development process. Since it is transpiled to JavaScript, developers can take advantage of future JavaScript language features today.
Mastering TypeScript will take you on a journey from understanding and interacting with the type system to working efficiently with more advanced features of the language.
We’ll start by introducing a simple client/server application. Then use the application to demonstrate key components of the TypeScript language.
Once the sample application is set up, we’ll look in detail at TypeScript’s type system. Then we take a look at more advanced language features, learn to deal with JavaScript libraries, and finally use TypeScript to utilize static typing between parts of an application.
Mastering TypeScript will help you write better TypeScript code and gain a deeper understanding of the language.

Написание больших приложений на JavaScript-вызов. Машинопись на JavaScript приносит на Землю посредством предоставления возможности статической типизации и будущими возможностями JavaScript сегодня.
Машинопись Разработчик дает мгновенную обратную связь на код, который они пишут для того, чтобы поймать ошибки ранее в процессе развития. Поскольку transpiled на JavaScript, разработчики могут воспользоваться преимуществами будущее языка JavaScript функции сегодня.
Осваивая Машинопись примут вас на путешествие из понимания и взаимодействия с системой типов, чтобы эффективно работать с более расширенными функциями языка.
Мы начнем с введения простое клиент/Серверное приложение. Затем используйте приложение, чтобы продемонстрировать ключевые компоненты Машинопись язык.
Очередной пример приложения настроены, мы будем смотреть в деталях на Машинопись Тип системы. Затем мы рассмотрим более продвинутые возможности языка, научиться справляться с JavaScript-библиотек, и, наконец, использовать typescript для использования статической типизации между частями приложения.
Осваивая Машинопись поможет вам лучше писать код машинописного текста и получить более глубокое понимание языка.
[spoiler="Содержание"]
Getting Started
The Course Overview
Sample Application Overview
Compiling TypeScript in the Sample Application

Deploying the Type System
Implicit or Explicit Types
Avoiding the "any" Type
Being Aware of Structural Typing
Type System Troubles
Compiler Options for Added Support
Enforcing Rules and Coding Standards

Moving to ES6 Classes
Introduction – Before Moving
Class-like JavaScript Patterns to TypeScript (Part 1)
Class-like JavaScript Patterns to TypeScript (Part 2)
Static Class-like Patterns in TypeScript
Shortening a Class with Parameter Properties
When to Use Arrow Function Properties

Interacting with the Type System
Assert and Guard
Making the Most of Type Guarding
Multiple Function Signatures
Rest and Spread
Extending Built-in Types
Code Refactoring

Representing JavaScript Libraries
Definition Files
Writing a Definition File
Strong Typing JavaScript Libraries on the Run
Downloading and Managing Definition Files
Included Definition Files

Language Features for Code Improvement
Making the Most of let and const
Working with Strings
enums
const enums Versus enums
Moving to ES6 Modules
Destructuring

Advanced ES6 and ES7 Features
Introduction to Generators
Improving Performance and Efficiency with Generators
Easier Asynchronous Code with async/await
Harnessing the Power of Decorators
Advanced Decorators

Bridging Statically Typed Gaps
Sharing Code Across Applications
Bridging with Interfaces
Bridging with Code Generation
Using TSX Files
[/spoiler]
Файлы примеров: отсутствуют
Формат видео: MP4
Видео: AVC, 1280x720, 16:9, 25fps, 335kbps
Аудио: AAC, 48kHz, 66.2kbps, stereo
[spoiler="Скриншоты"]

[/spoiler]

Related Torrents

torrent name size uploader age seed leech
2
13
15
6
4