My Blog

My WordPress Blog

My Blog

My WordPress Blog

Learn Angular

Property Binding in Angular 8

Property Binding is also a one-way data binding technique. In property binding, we bind a property of a DOM element to a field which is a defined property in our component TypeScript code. Actually Angular internally converts string interpolation into property binding. For example: Property binding is preferred over string interpolation because it has shorter and cleaner […]

Directives

The Angular 8 directives are used to manipulate the DOM. By using Angular directives, you can change the appearance, behavior or a layout of a DOM element. It also helps you to extend HTML. Angular 8 directives can be classified in 3 categories based on how they behave: Component Directives: Component directives are used in main […]

Architecture

Angular 8 is a platform and a framework which is used to build client applications in HTML and TypeScript. Angular 8 is written in TypeScript. It implements core and optional functionality as a set of TypeScript libraries that you can import into your apps. The basic building blocks of an Angular application are NgModules, which […]

First App

Let’s see how to create an Angular 8 application. To create an app Syntax: For example: Here, we are going to create an app named “angular8firstapp” You can see that a folder is created. This is your first created app of Angular 8. Open this folder and you will see the some subfolders. Here, src is the main […]

Installation

(How to install Angular 8 or Angular 8 Environment setup) Before to setup environment for Angular development using the Angular CLI tool, you must have installed Node.js on your system and set a development environment and npm package manager. Install Node.js Angular requires Node.js version 10.9.0 or later. You can download it from https://nodejs.org/en/ After downloading, […]

Scroll to top