In last lesson we've installed angular project. In this video we will discuss the filesystem angular app structure
Tutorials
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...
Gulp. Browsersync
In this tutorial we'll consider a very useful plugin browsersync. Browsersync reload browser itself after some changes in files (html/css/js etc) appears.Browsersync's available for Grunt and Gulp. To set browsersync in the project it needs to define config for...
Gulp. Compile typescript and minify js
In the final Gulp tutorial we'll consider decisions for compile typescript and minify javascript.We'll use gulp-typescript to compile typescript. For minify final javascript we'll use gulp-uglify plugin. Besides it's important to note about two gulp core methods,...
Gulp. Minify CSS. Watch mode
In this video we will continue working with Gulp. Today we'll discuss css minification and eatch mode from gulp core api.CSS minification is very important. task. Browser loads page quicklier with minified resources (css, js, html etc.). For css minification I...
Gulp. Plugins. Compile SCSS to CSS
We continue Gulp learning. Today we'll consider Gulp plugins necessity, install one of it (for compile Sass to CSS).You need to install plugins to complete different frontend tasks with Gulp. It is installed as simple npm packages.We'll use gulp-sass plugin for...
Gulp introduction
Today we start learning Gulp - the powerful tool for fas completing different frontend tasks.While development frontend project with modern tools (css preprocessors, typescript, etc.) we often need complete the same tasks a lot of time. For this process simplicity...
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...