What It Does
Astro Itchio Publisher is an AstroJS integration that automates your deployment to Itch.io. It fixes paths in your `dist` folder for flawless Itch.io compatibility, zips it up, and optionally uploads it using either the Itch.io API or Butler. Manual uploaders can use it just for path fixing and zipping too!
Get Started
- Install the package:
npm install astro-itchio-publisher
- Configure in
astro.config.mjs
:Choose your method:
- Manual Upload Method (Path Fixing + Zip Only):
No upload config needed—just add the integration.
import { defineConfig } from 'astro/config'; import astroItchioPublisher from 'astro-itchio-publisher'; export default defineConfig({ integrations: [ astroItchioPublisher() ], });
- API Method (Automated Upload):
import { defineConfig } from 'astro/config'; import astroItchioPublisher from 'astro-itchio-publisher'; export default defineConfig({ integrations: [ astroItchioPublisher({ itchProject: 'your-username/your-game:html5', apiKey: 'your-itchio-api-key', // From https://itch.io/user/settings/api-keys }), ], });
- Butler Method (Automated Upload):
Install Butler: Download and run
butler login
.import { defineConfig } from 'astro/config'; import astroItchioPublisher from 'astro-itchio-publisher'; export default defineConfig({ integrations: [ astroItchioPublisher({ itchProject: 'your-username/your-game:html5', useButler: true, }), ], });
- Manual Upload Method (Path Fixing + Zip Only):
- Build your project:
npm run build
Fixes paths and zips
dist
intoastro-itchio-publisher-dist.zip
. For API/Butler, it uploads automatically; for manual, upload the zip to Itch.io yourself.
Ready to Launch?
Grab it now and beam your Astro projects to Itch.io!
Get it on npm View on GitHub