Category Archive for "Angular"

What is Pair Programming?

Two Minds, One Goal: The Power of Pair Programming Pair programming is an agile software development technique in which two developers work together on the same computer to write code. One developer, called the driver, is responsible for typing the

Read More

What’s new in Angular 15

Over the past year, the team has removed Angular’s legacy compiler and rendering pipeline which enabled the development of a series of developer experience improvements in the past couple of months. Angular v15 is the culmination of this with dozens

Read More

Angular Best Practices and Standards

Angular is a TypeScript-based free and open-source web application framework. It is a complete rewrite of AngularJS. This article outlines a few of the standards and best practices of Angular that you could use and experience when developing the applications.

Read More

What’s new in Angular 13

The new release of Google’s popular TypeScript-based web framework is available now. This post will bring you closer to the most important new features and breaking changes in Angular 13 and help you decide whether an update for your project

Read More

Top 5 Angular UI kits and frameworks

Angular keeps growing in adoption and keeps becoming every day more popular among Frontend implementations. In this brief guide, we will have a look around some of the greatest and most popular UI kits and frameworks, trying to understand which

Read More

What’s new in Angular 12

Angular provides unmatchable features that make it the most preferred framework in the Web Development industry today. The Angular version 12.0.0 release has come up again with the most compelling features and customization options to take your development journey to

Read More

How to structure Angular Apps

There are many ways one can structure an Angular app. But this is how we structure our applications for extensive flexibility, scalability, and small initial bundle size. Core: The things that are absolutely essential for the app to start. Features:

Read More

Top 6 Angular component libraries

Angular is one of the most popularly used frameworks with best-designed practices and tools for app development companies. Angular encourages the developers to use components to split the user interface into reusable and different pieces. There are many popular Angular

Read More

What’s new in Angular 11

Angular Version 11 release has updates across the platform including the framework, the CLI and components. Let’s dive in! What’s in this release? Automatic Inlining of Fonts To make your apps even faster by speeding up their first contentful paint,

Read More

Communicating between templates with function-like HTML segments in Angular

The function-like HTML segment refers to a block of HTML with the ability to accept context variables (in other words, parameters). A typical Angular component has two major parts of logic, a HTML template and a Typescript class. The capability

Read More