Skip to navigation Skip to main content
We The Protesters
Eleventy
Eleventy Documentation
Stable
2.0.1
Canary
3.0.0-alpha.6
Toggle Menu
Eleventy 1.93s
Gatsby 29.05s

Quick Tip #010—Transform Global Data using an `eleventyComputed.js` Global Data File

You can generate multiple data cascade elements in one eleventyComputed.js file. Following is a working example.

This example generates data cascade elements from multiple .json files in the global data directory.

Assume you have data files named links.json and copyrights.json, and you only want to extract a portion of the json object. In this case, the entry element contains the useful data in the json object, and is a child of the feed element in this case.

The corresponding eleventyComputed.js file contents can look like the following:

Filename _data/eleventyComputed.js
module.exports = {
myCopyrights: (data) => {
return data.copyrights.feed.entry;
},
myLinks: (data) => {
return data.links.feed.entry;
},
};