Display the version of a deployed Angular application
Briefly

In modern application development, particularly with containerization and automated deployment, it can be tough to track the version of deployed applications. This article explores strategies to expose the application version for easy access by developers, quality assurance testers, and clients. By retrieving the version from package.json and using Angular's @HostBinding, teams can display the application's version in the DOM, ensuring everyone remains informed about the current application version across various environments.
With continuous deployment mechanisms, developers often lose track of the application version. Exposing the version from package.json helps maintain clarity across teams.
Expose your application's version in the DOM using Angular's @HostBinding, allowing team members to easily check which version is deployed and tested.
Read at Medium
[
|
]