How to display the app version in Angular? Last Updated : 02 Nov, 2020 Comments Improve Suggest changes Like Article Like Report Angular is a client-side TypeScript based, front-end web framework by Google. Angular 8 is a great, reusable UI (User Interface) framework for the developers which help in building Single Page Applications. Generally, all the angular 2+ projects or applications are referred to as Angular applications. The earlier version is called Angular.js and angular is a complete re-write of Angular.js which comes with rich and useful features. Approach: In order to know the version, first, we need to import 'VERSION' from '@angular/core'.The reason for importing this is that it is an object which contains properties that we can use to know the version.After importing it now access the version using the 'full' key from the imported Version.After retrieving the value assign it to a variable and then using a string interpolation display in the HTML file.Once you are done with the above implementation, start the project. Code Implementation: app.component.ts: JavaScript import { Component, VERSION } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: [ './app.component.css' ] }) export class AppComponent { version = VERSION.full; } app.component.html: HTML <h2> Welcome to GeeksforGeeks </h2> <p> The version of the App is : {{ version }} </p> app.module.ts: JavaScript import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { AppComponent } from './app.component'; @NgModule({ imports: [ BrowserModule ], declarations: [ AppComponent ], bootstrap: [ AppComponent ] }) export class AppModule { } Output:Â Â Note: My version number is 6 and hence it is displaying as 6. Comment More infoAdvertise with us Next Article How to display the app version in Angular? B bunnyram19 Follow Improve Article Tags : Web Technologies AngularJS AngularJS-Misc Similar Reads How To Display Values With Interpolation In Angular? Angular is a powerful framework for building dynamic web applications. One of its key features is data binding, which allows developers to display and update values seamlessly within the UI. Interpolation is a fundamental technique in Angular that enables the integration of component data directly i 3 min read Version Compatibility in Angular Angular is a widely used front-end framework developed by Google for building dynamic web applications. Over time, Angular has evolved from the AngularJS (1.x) to the modern Angular (2+) bringing significant improvements in performance, modularity and development.With frequent updates ensuring versi 6 min read How to use Angular Material in Angular 17? Angular Material is a comprehensive UI component library designed specifically for Angular applications. With its large collection of pre-built components and seamless integration with Angular, Angular Material simplifies the process of creating visually appealing and responsive user interfaces. In 2 min read How to get the value of the form in Angular ? In this article, we are going to see how to get value from the form in Angular 10. We will use AbstractControl value property to get the form value in an object. Syntax: form.value Return Value: object: It is an object containing form value Approach:Â Create the Angular app to be usedIn app.componen 1 min read How to build progressive web app(PWA) in Angular 9 ? In this article, we will develop a PWA (Progressive Web App) using Angular. What is PWA ? Progressive Web Apps (PWAs) are web applications that have been designed so that they are capable, reliable, and installable. PWA are built and enhanced with modern APIs to deliver enhanced capabilities, reliab 7 min read Like