site/pages/api/games.js
2022-12-15 09:16:41 -05:00

8 lines
274 B
JavaScript

export default async function getGames(req, res) {
let games = await fetch(
'https://editor.sprig.hackclub.com/metadata.json'
).then(res => res.json())
games = games.sort((a, b) => new Date(b.addedOn) - new Date(a.addedOn)).slice(0, 4)
return res.json(games)
}