Show HN: I built a tool that watches webpages and exposes changes as RSS
51–60 of 86 posts
Re: Show HN: I built a tool that watches webpages and exposes changes as RSS
#52Re: Show HN: I built a tool that watches webpages and exposes changes as RSS
#53One of the very few surviving posts on the matter: https://burningbird.net/forget-the-law-forget-the-technology...
Re: Show HN: I built a tool that watches webpages and exposes changes as RSS
#54I've built something similar for the startup I'm working at, but across the web with a Natural Language Interface: https://parallel.ai/products/monitor. It can find diffs in previous content or find new pages pertaining to the query depending on the semantics. Hope people on this thread are able to derive value from it.
Re: Show HN: I built a tool that watches webpages and exposes changes as RSS
#55As a (former) reporter, site monitoring is a big part of what I do on a daily basis and I used many, many such services. I can attest that, at least from the landing page, this seems to be a very good execution of the concept, especially the text-based diffing to easily spot what changed and, most importantly, how. The biggest hurdle for such apps however are 'js-based browser-rendered sites' or whatever they're call…
Thanks, that’s a really good question. Site Spy uses a real browser flow, so it generally handles JS-rendered pages much better than simple HTML-only polling tools. In practice, the trickier cases tend to be sites with aggressive anti-bot protection or messy login/session flows rather than JS itself. I’m trying to make those limitations clearer so people don’t just hit a vague failure and feel let down
Re: Show HN: I built a tool that watches webpages and exposes changes as RSS
#56Re: Show HN: I built a tool that watches webpages and exposes changes as RSS
#57Re: Show HN: I built a tool that watches webpages and exposes changes as RSS
#58I like https://github.com/dgtlmoon/changedetection.io for this. Open source and free to run locally or use their Saas service.
Yep, changedetection.io is a good project. With Site Spy, I wanted to make the browser-first workflow much easier: install the extension, connect it to the dashboard, click the exact part of the page you care about, and then follow changes as diffs, history, or RSS with very little setup. I can definitely see why the open-source / self-hosted route is appealing too.
https://changedetection.ioFeed descriptionhttp://www.rssboard.org/rss-specificationpython-feedgenThu, 12 Mar 2026 10:10:10 +0000Re: Show HN: I built a tool that watches webpages and exposes changes as RSS
#59Earlier quoted context omitted.
Sure but this one has a MCP server, costs money, and was presumably made last night!
It's been around for a while and recommended by many. I tried it myself and it's okay.
Re: Show HN: I built a tool that watches webpages and exposes changes as RSS
#60As a (former) reporter, site monitoring is a big part of what I do on a daily basis and I used many, many such services. I can attest that, at least from the landing page, this seems to be a very good execution of the concept, especially the text-based diffing to easily spot what changed and, most importantly, how. The biggest hurdle for such apps however are 'js-based browser-rendered sites' or whatever they're call…
I'm a fellow reporter who needs to keep tabs on some websites. I used various tools, including running my own Klaxon[1] instance, but these days I find it easier to just quickly vibe-code a crawler and use GitHub Actions to run it periodically. You can make it output an RSS feed, email you, archive it with archive.today, take a screenshot, or trigger whatever action you want.