
Migrating your apps from AngularJS to Angular
So you have an Angular JS in prod and you want to migrate it to the latest version of Angular. The first question to answer is why?
Microservices With AngularJS, Spring Boot, and Kafka
Asynchronous end-to-end calls starting from the view layer to the backend is important in a microservices architecture because there is no guarantee that the containers which receive the calls will handle the response.

Create a dynamic tab component with Angular
The purpose of this article is to learn about the concept of dynamic components and template references in Angular by building a dynamic tab component. We will learn about ComponentFactoryResolver, ViewContainerRef, ngTemplateOutlet and ngOutletContext.

NativeScript + Angular === ‘Awesome’
Come to NativeScript Developer Day US in New York City on Sept 18-19. Two full days of the best speakers on NativeScript, Angular, TypeScript and more.
Routing In Angular 2 With TypeScript And Visual Studio 2015 - Part One
In this article, we are going to learn how to implement routing in Angular 2 with examples. Routing is a concept which helps users to navigate from one view to another view of the application.

Optimizing the Performance of Your Angular Application
By default, Angular runs change detection on all components every time something changes in your app — from a click event to data received from an ajax call. ( user events, timers, xhr, promises, etc. ) Imagine, for example, that we have a select component.
Angular Form Validations with Redux for multiple Routes
Many frontend applications require the extensive use of forms to allow users entering information. Angular supports various mechanisms to handle forms, but the author of this article, Niklas, struggled to figure out how to handle validations of data on different pages/routes. Below is a pattern he's used based on Redux which doesn’t leverage much of the Angular forms functionality but works very nicely for him.