hypnagaga_old/src/_data/github.js
2022-10-14 15:00:52 +02:00

14 lines
280 B
JavaScript

const EleventyFetch = require('@11ty/eleventy-fetch');
module.exports = async function () {
let url = 'https://api.github.com/users/madrilene/repos';
// returning promise
let data = await EleventyFetch(url, {
duration: '1d',
type: 'json'
});
return data;
};