Introduction In this article, we will learn how to host an Angular app on Heroku. We will configure Continuous Deployment (CD) for our application using Heroku and GitHub. This will allow our app to be published automatically whenever we push the new code to the GitHub repository. Prerequisites Install the latest version of Angular CLI […]
Tag: Visual Studio Code
Template-Driven Form Validation In Angular
Introduction In this article, we will learn about validations in the template-driven form in Angular. We will create a simple user registration form and implement some inbuilt validations on it. Along with the inbuilt validations, we will also implement some custom validations to the template-driven form. We will consider the following custom validations for this […]
Reactive Form Validation In Angular
Introduction In this article, we will learn about validations in the reactive form in Angular. We will create a simple user registration form and implement some inbuilt validations on it. Along with the inbuilt validations, we will also implement some custom validations to the reactive form. We will consider the following custom validations for this […]
Policy-Based Authorization In Angular Using JWT
Introduction In this article, we will create a web application using ASP.NET Core and Angular. We will then implement authentication and policy-based authorization in the application with the help of JWT. The web application will have two roles – Admin and User. The application will have role-based access for each role. We will learn how […]
Localization In Angular Using i18n Tools
Introduction In this article, we will learn how to make our Angular app available in different languages using i18n and localization. We will create an Angular application and configure it to serve the content in three different languages. We will also deploy our app to Google Firebase and see how localization works in real time. […]
Getting Started With Angular 7.0
Introduction Angular has released its latest version, Angular 7.0. In this article, we will explore the following points What is new in Angular 7.0? Creating the first Angular 7.0 application using Angular CLI. How to update existing Angular application to Angular 7.0? What’s new in Angular 7.0? While creating a new Angular application the Angular […]
Understanding Angular Animation
Introduction Animation is defined as the transition from an initial state to a final state. It is an integral part of any modern web application. Animation not only help us to create a great UI but it also makes the application interesting and fun to use. A well-structured animation keeps the user glued to the […]
Getting Started With Angular 6.0
Introduction Angular has released its latest version Angular 6.0. In this article, we will understand the new features of Angular 6.0 and also set up a new project with the help of Angular CLI 6.0 and Visual Studio Code. What’s new in Angular 6.0 ? ng update: A new CLI command that will update your […]
Getting Started With Angular 5 Using Visual Studio Code
Introduction In this article, we are going to set up Angular 5 app using Visual Studio Code. We will be using Angular CLI for our demo. Agenda Install Node.js. Install Angular CLI. Create our first Angular App. Launch Angular App in the browser. Displaying our custom message on Webpage. Conclusion Install Node.js The first step is […]
Unit Test In .NET Core Application Using MStest
Introduction In this article, I am going to explain how you can perform unit tests in a .NET Core application using MStest as test library and C# as the programming language. We will be creating a sample application to test if a given integer is even or not and then, we will be running our […]
CRUD Operation With ASP.NET Core MVC Using Visual Studio Code and EF
Introduction In this article I am going to explain how to create a basic web application using ASP.Net Core MVC and Visual Studio Code in Windows System. We are going to create a sample Employee database management system. We will be using ASP.Net Core 2.0,Entity Framework and SQLite. Prerequisites Install .Net Core 2.0.0 SDK from […]
CRUD Operation With ASP.NET Core MVC using Visual Studio Code and ADO.NET
Introduction In this article we are going to create a web application using ASP.NET Core MVC with the help of Visual Studio Code and ADO.NET. We will be creating a sample Employee Record Management System and performing CRUD operation on it. Prerequisites Install .NET Core 2.0.0 or above SDK from here Download and install Visual Studio […]