Do You Include Version Numbers on Your Website?

0
19
Asked By CreativePanda42 On

I'm curious about versioning for websites, similar to what we do with apps. I don't currently include version numbers on my site, but I wonder if anyone else does. If you do, what approach do you take for tracking versions?

5 Answers

Answered By EpicNomad85 On

I keep my npm package version and git hash in my humans.txt file. It helps me track when new builds go live easily, which is really useful.

Answered By DebuggingNinja77 On

For my site, I include my git hash as a global variable. It helps during debugging so I can easily check what version of the site I'm working with.

Answered By HumbleThinker93 On

I don't use version numbers for my website. I think most people prefer seeing dates to understand when content was published, rather than focusing on version changes.

Answered By VersionBoss22 On

I follow a versioning format that combines major, minor, and fix numbers as the name for my root folder. This is symlinked so the public site always points to the latest version.

Answered By WebSavvyGal58 On

I like to track versions in my web app manifest using the package version from my package.json file. This method is particularly useful for progressive web apps.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.