In this tutorial, we will take a look at services in Angular 5. Services are very useful because they make your code reusable. You can use the code everywhere on the page and your code can be accessible to the entire application. We can create methods, properties, and data connections within services, and then we can access them from others components. [Read more…]
Routing in Angular 5
In this tutorial, we will take look at routing in Angular 5. Routing is the basic part of any application. Whenever you need multiple pages in your application, then you must be familiar with the concept of routing. Because routing means navigating between pages. [Read more…]
Data Binding in Angular 5
In this tutorial, we will take a look at data binding in Angular 5 application. Data and User Interface (UI) both are the fundamentals of any application. And it’s very crucial to find an efficient way to wire them up together. But angular provide us a great support to wire them up together. [Read more…]
What is module in Angular 5
In this tutorial, we will take a look at Module in Angular 5. Basically, a module is a container of different parts of an Angular application. Where you can group all the components, pipes, directives, and services that are related to the application. [Read more…]
How to Setup Angular 5 Project using Angular CLI in VS Code
Hi, I am going to start a series of Angular 5 tutorials. Where you will learn many things about Angular 5 like components, Interpolation, Property and Event Binding, Routing, Templating and Styling and etc. But first-of-all, now in this Angular 5 tutorial, I will show you how to set up a project in angular 5 using Visual Studio code. [Read more…]