- Published
- Updated
Add Build Info to an 11ty Site
In a recent update to my site, I decided to show a helpful notice in my footer that timestamps my build, writes the abbreviated commit hash from Git, and links to the changeset on my GitHub repo for ease of reference. You can expose all of this information and much more to your 11ty templates using a simple JavaScript data file.
Create a file named buildInfo.js
in your data directory and populate it with this code:
module.exports = () => {
return {};
}
Currently, all this does is return an empty object, but our goal is to have this function return all sorts of useful information about our site. For the purposes of this tutorial, I’ll just demonstrate how to return three pieces of information:
- The approximate start time of the build.
- Our site version, as specified in
package.json
. - The git hash associated with the current build.
1. Timestamping an 11ty Build
Since we’re working with Node, we have access to all the lovely date-related constructors and methods that JavaScript affords us. Using the code below, we can get an approximate timestamp for our 11ty build so we can access this information in our templates:
module.exports = () => {
const now = new Date();
const timeZone = 'UTC';
const buildTime = new Intl.DateTimeFormat('en-US', {
dateStyle: 'full',
timeStyle: 'short',
timeZone,
}).format(now);
return {
time: {
raw: now.toISOString(),
formatted: `${buildTime} ${timeZone}`,
},
};
};
You may be wondering why I’m returning an object for the build time instead of just a single string. The main reason for this is so I can later render this information in the time
HTML element for semantics, which expects a datetime
attribute and the formatted date as its child:
<time datetime="{{ buildInfo.time.raw }}">
{{ buildInfo.time.formatted }}
</time>
Alternatively, you could return a single JavaScript date object and create 11ty filters to format it at the template level. This would require more work from each template, so I’ve opted to instead calculate that information upfront before supplying it to all my templates.
2. Reading the Version from package.json
This step should be the easiest of them all—we’ll just import our package.json
and read any of the metadata we want. For our purposes, the package version will suffice. Note that you may need to adjust the relative import path to your package.json
:
const packageJson = require('../../package.json');
module.exports = () => {
// code from before omitted for brevity
return {
// ... other values here
version: packageJson.version,
}
}
3. Getting the Latest Commit Hash
Using Antoine Rousseau’s solution from StackOverflow, we can synchronously read the latest Git commit hash by executing git itself as a child process of our 11ty build:
// https://stackoverflow.com/a/34518749/5323344
const latestGitCommitHash =
childProcess
.execSync('git rev-parse --short HEAD')
.toString()
.trim();
Once we have this final piece of info, we can return it alongside the build timestamp:
module.exports = () => {
// code from before omitted for brevity
// https://stackoverflow.com/a/34518749/5323344
const latestGitCommitHash =
childProcess
.execSync('git rev-parse --short HEAD')
.toString()
.trim();
return {
// ... other values here
hash: latestGitCommitHash,
}
}
And now, we can render this hash anywhere in our templates by accessing buildInfo.hash
.
We can even take things a step further and link to the changeset on our site’s GitHub repo (assuming yours is public):
<a href="https://github.com/Username/Repo/commit/{{ buildInfo.hash }}" rel="noreferrer noopener" target="_blank">
{{ buildInfo.hash }}
</a>
What Else?
That’s all for this tutorial! In practice, you could build on this to include any other information that you think your templates might need, either for debugging purposes or transparency with your readers. For example, you might find this useful when split-testing a client’s Netlify site, where the CDN serves different versions of your site to different visitors for the purposes of testing copy or design tweaks. I’ve yet to try out this feature, and it’s still in beta, but the approach outlined in this article could be useful if you decide to give that a go since users would be able to tag any bug reports with your version or Git commit hash.