Skip to content

Instantly share code, notes, and snippets.

@Andy-set-studio
Created June 17, 2020 15:47
Show Gist options
  • Save Andy-set-studio/59caf21e1d2a562844ccf876e8d2db61 to your computer and use it in GitHub Desktop.
Save Andy-set-studio/59caf21e1d2a562844ccf876e8d2db61 to your computer and use it in GitHub Desktop.
JavaScript Data File Example
const fetch = require('node-fetch');
module.exports = async () => {
try {
const res = await fetch(
'https://11ty-from-scratch-content-feeds.piccalil.li/media.json'
);
const {items} = await res.json();
return items;
} catch (ex) {
return [];
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment