Features of Angular
Angular is a powerful modern Javascript framework and it comes with a lot of inbuilt features to develop secure web and mobile applications. Let's look at the features of angular that makes it stand out.
- Cross-platform - Web, Native and Desktop Applications
- Productivity - IDE's, Templates, Angular CLI
- Forms - Template-driven and Reactive forms for building UI pages
- Inbuilt Angular Router Module - HttpClientModule
- Inbuilt Dependency Injection
- RxJS support for asynchronous calls (Observables)
- Tree shaking: Build Optimization step which tries to ensure any unused code does not get used on the final bundle. Smaller bundles and faster startup time. @Injectable { providedIn: }
- Differential Loading - Map files for Old and Modern browsers
- Ivy - New Rendering Engine
- ngRx for State Management
- Internalization and Localization using i18n inbuilt tool or Ngx-translate third-party tool. (Internalization - Process of designing and preparing your app to be usable in different languages. Localization is the process of translating your internationalized app into specific languages for particular locales)
Comments
Post a Comment