👩💻 Join our community of thousands of amazing developers!
Here’s a hacky set of instructions to download all of the ZIP files for a given js13kgames year. Navigate to the page for a particular year. For example, js13kgames.com/2024/games. Run the following in your browser’s dev console: (() => { const results = []; document.querySelectorAll("a").forEach(({ href }) => { if (/\/\d{4}\/games\/.+$/.test(href)) { results.push(href + ".zip"); } }); console.log(results.join("\n")); })(); Copy the output into a file. I called this...