This guide was written for Angular 2 version: 2.0.0
The ng-switch directive in Angular 1.x allows us to dynamically control what DOM element is visible based on some pre-defined condition. When the va...
One of the biggest hurdles to creating your projects can be getting from zero to running project. Using the Angular CLI makes that process painless and fast. In this post, we'll get a project skeleton...
This guide was written for Angular 2 version: 2.0.0
The ng-class directive in Angular 1.x allows you to dynamically add CSS classes based on a configuration object. This is a special key-value object,...
.greendot {
background-color: #62E32A;
height: 10px;
width: 10px;
display: block;
margin: auto;
border-radius: 20px;
}
The following is an excerpt from the Planning And Angul...
This guide was written for Angular 2 version: 2.0.0-rc.4
With component architecture in Angular 2, it's important to design components that contain what we call inputs and outputs. The data enters a c...