html2rss-web converts arbitrary websites into RSS 2.0 feeds with a slim Ruby backend and a Preact frontend.
- Docs & feed directory: https://html2rss.github.io
- Contributor Guide: docs/README.md
- Discussions: https://github.com/orgs/html2rss/discussions
- Sponsor: https://github.com/sponsors/gildesmarais
- Responsive Preact interface for demo, sign-in, conversion, and result flows.
- Automatic source discovery with token-scoped permissions.
- Signed public feed URLs that work in standard RSS readers.
- Built-in URL validation, scoped feed access controls, and HMAC-protected tokens.
- Backend: Ruby + Roda, backed by the
html2rssgem for extraction. - Frontend: Preact app built with Vite into
frontend/distand served at/. - Distribution: Docker Compose by default.
For detailed architecture and internal rules, see docs/README.md.
The published image already includes a sample config/feeds.yml, so you can try the app without creating or mounting one first.
docker run --rm \
-p 4000:4000 \
-e RACK_ENV=production \
-e HTML2RSS_SECRET_KEY=$(openssl rand -hex 32) \
html2rss/webThen open:
http://localhost:4000/for the web UIhttp://localhost:4000/microsoft.com/azure-products.rssfor a built-in Azure updates feed
This trial run is intentionally minimal. Use Docker Compose for Browserless, auto-updates, or local feed overrides.
- Generate a key:
openssl rand -hex 32. - Export
HTML2RSS_SECRET_KEY,HEALTH_CHECK_TOKEN, andBROWSERLESS_IO_API_TOKENin your shell or.env. - Start:
docker-compose up.
UI + API run on http://localhost:4000. The app exits if the secret key is missing.
Use the repository's Dev Container for all local development and tests. Running the app directly on the host is not supported.
See the Contributor Guide for setup commands, testing strategy, and backend structure rules.
See the html2rss project guidelines.
