This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/_data/music.js
2024-03-30 20:26:38 -07:00

17 lines
489 B
JavaScript

import EleventyFetch from '@11ty/eleventy-fetch';
import { buildChart } from './helpers/music.js'
export default async function () {
const API_KEY_MUSIC = process.env.API_KEY_MUSIC;
const url = `https://coryd.dev/api/music?key=${API_KEY_MUSIC}`;
const res = EleventyFetch(url, {
duration: '1h',
type: 'json',
}).catch();
const resObj = await res;
return {
charts: buildChart(resObj['scrobbles']),
artists: resObj['artists'],
albums: resObj['albums']
}
}