fetch-itch-games
v0.0.8
Published
This project allows you to download all of the games on [itch.io](https://itch.io) associated with a provided API key. This can be useful for creating a backup of the files you've uploaded to itch for your own storage or for porting to another platform.
Downloads
10
Readme
fetch-itch-games
This project allows you to download all of the games on itch.io associated with a provided API key. This can be useful for creating a backup of the files you've uploaded to itch for your own storage or for porting to another platform.
Files downloaded will include each available build for the game, two image files (cover
and still_cover
), a metadata.json
describing the game. The root folder will also include a metadata.json
describing all of the games in a list.
Dependencies:
- node/npm
- butler
- an itch.io API key for your account
Usage
npx fetch-itch-games -o output [--dry-run] [--published]
Examples
# Download all your games to a folder named "games"
API_KEY=abcd1234 npx fetch-itch-games -o games
# List what files would be downloaded without actually downloading them
API_KEY=abcd1234 npx fetch-itch-games -o . --dry-run