/bgg-games-ranks

Primary LanguageHTMLApache License 2.0Apache-2.0

DEPRECATED!

Working locally

npm run start:dev
curl 'http://localhost:3000/api/get-games?amount=101'

Interface:

interface BGGGamesRanksData {
  date: string;
  games: {
    rank: number;
    name: string;
    year: string;
    id: string;
  }[];
}