Dynamic Imports for Lazy Routes
Angular 10 added support for dynamic imports in route configurations. This allows for more flexible and efficient lazy loading of modules.
My WordPress Blog
My WordPress Blog
Angular 10 added support for dynamic imports in route configurations. This allows for more flexible and efficient lazy loading of modules.
Angular 10 upgraded to TypeScript 3.9, which brought performance improvements and new features like better type checking and faster compilation.
Angular 10 introduced a new set of default browser configurations that included support for modern browsers, which improved performance and reduced the polyfills required.
Angular 10 introduced improvements to the size of bundles by default, thanks to the updated Terser tool for JavaScript minification, which reduced the size of production builds.
The first version of Angular was Angular1.0 (also known as AngularJS) which was released in 2010. But here, we are talking about Angular so; let’s see history and different versions of Angular. Angular2 Angular 2.0 was first introduced in October 2014. It was a complete rewrite of Angular so, the drastic changes in the 2.0 […]
Angular 7 Environment Setup In this page, you will see how you can install the prerequisites needed to run your first Angular 7 app. Install Visual Studio Code IDE or JetBrains WebStorm You must have an IDE like Visual Studio Code IDE or JetBrains WebStorm to run your Angular 7 app. VS Code is light […]
A list of most important features and benefits of Angular: Angular supports multiple platforms Angular is a cross platform language. It supports multiple platforms. You can build different types of apps by using Angular. High Speed, Ultimate Performance Angular is amazingly fast and provides a great performance due to the following reasons: Productivity Angular provides […]
Angular 7 is a JavaScript (actually a TypeScript based open-source full-stack web application) framework which makes you able to create reactive Single Page Applications (SPAs). Angular 7 is completely based on components. It consists of several components which forms a tree structure with parent and child components. Angular’s versions beyond 2+ are generally known as Angular only. The very first version […]
In AngularJS, some directives can be used to bind application data to attributes of HTML DOM elements.These directives are: Directive Description ng-disabled It disables a given control. ng-show It shows a given control. ng-hide It hides a given control. ng-click It represents an AangularJS click event. ng-disabled directive:The ng-disabled directive binds AngularJS application data to […]
In AngularJS, you can create a dropdown list (select box) based on items in an array, or an object. Using ng-options You should use the ng-option directive to create a dropdown list, based on an object or an array in AngularJS. See this example: Note: You can also use the ng-repeat directive to make the […]