
Convert HTML To PDF Using Angular 6
Sometimes, we need to provide the important data of an application in the form of a document like a PDF or an image. Those times we need to convert the HTML layout into the document, and here, we are going to do the same task to convert the HTML into PDF.
Angular Schematics: Asynchronous Schematics
Full disclosure, this post completely could be an edge case that you may or may not ever need to think about when creating your own Angular Schematics. For a majority of Schematics, you’ll be generating your Schematic in a very synchronous fashion, able to trace the exact path from one function to another without any external dependencies or service calls.

Angular Dynamic Components: Building a Dialog System
In this tutorial, we will learn what dynamic components are and how they work in angular.
We will do so by creating a very flexible dialog system, that demonstrates how dynamic components are used.

Learn to Add Native Mobile to Your Angular Projects: The Migration Story
Join us Thursday, October 11th at 11AM ET as we dive into the very latest in web to mobile code sharing with Angular and NativeScript!
In this webinar we will show you how you can take an existing Angular Web project and add NativeScript to it, by converting it to a code-sharing project with the new superpowers of Angular CLI and NativeScript Schematics. Then we will go through a few steps of converting individual components and modules into a code-sharing structure. How?
Angular Performances Part 2 - Reload
This is the second part of this series, and this blog post is about how we can speed up the reloading of an Angular application. In future posts, we’ll talk about how to profile your running application, and how to improve runtime performances.

ngFor – Working with Large Lists in Angular
ngFor is a directive that iterates through a list of data and instantiates a template for each item in the list. It does an amazing job when dealing with small list. The issue with ngFor is that it loads everything on DOM, which is slow – possibly iterating over hundreds of items and rendering them. This can impact the performance negatively by hogging memory and processing power. On top of that, any change to a single item on the list, the whole list is re-rendered.
Angular Router Series: Secondary Outlets Primer
In this short article, we’re going to explore secondary outlets (sometimes called named router outlets) and see the role they play in routing. By the end of this article, you will understand; how to define secondary outlets, why secondary outlets are used, the effect that they have on the structure of a URL and how they are routed and activated.