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...
While the concept of package management in software development is almost as old as the concept of software itself, over the last few years, we've seen the rise of what we might call "Micro Packages"....
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...
This guide was written for Angular 2 version: 2.0.0-rc.4
With component architecture in Angular 2, it's an important to design components to contain what we call inputs and outputs. The data enters a ...