Today we'll consider basics of Angular components - template params and methods, interpolation, eventsAngular components are what the user interacts with: see data and interacts with it (clicks etc).Angular component is class, which has its own template and styles....
JavaScript
Angular CLI
In this video we'll talk about Angular CLI - command line interfaceAngular CLI lets you quickly create main Angular entities - components, services, pipes etc. Let's consider one of the most used command ng generate <entity> <options>. Entity is Angular...
Angular. Project structure
In last lesson we've installed angular project. In this video we will discuss the filesystem angular app structure
Angular Intro
In previous lessons we're working with AngularJS. The modern Angular version is fundamentally different from AngularJS. It was written with using TypeScript and RxJS. Beginning from this lesson we begin learning modern Angular.The link to the Angular...
TypeScript. Compile options. Tsconfig.json file
In this tutorial we'll talk about typescript file need.tsconfig file contains TypeScript project compile options. This file location defines the root of typescript project. Amount of available compile options is very large, You can read about each of it in official...
TypeScript. Decorators
In this tutorial we’ll discuss decorators in TypeScript and consider some its use examples.Decorators are experimental but very powerful part of TypeScript language. Decorators are very important part of such a javascript framework – Angular. In TypeScript decorator...
TypeScript. Modules and namespaces
In this video we'll discuss namespaces and modules in...
TypeScript. Generics
Today we'll discuss generics - one of the most powerful TypeScript capabilitiesGenerics let you create flexible programming entities (functions, classes, interface etc.) to work with any data...
TypeScript. Functions
In this video we'll consider new features in functions work and union types in...