I'm devloping a web app.
What are the best practices for showing the version information in a web app?
I'm using semantic versioning, and I already have the semver e.g. 1.2.0
But I'm curious where is the best way to display it and how to manage it. I am thinking to:
Is this reasonable approach?
Is there any example in jsfiddle or codepen that shows how to do this?
Thanks,
Avner
Yes, you could follow your approach. Another way would be to read the version from your package.json file
import {version} from './package.json';
and use it in your about page.