A modern web application to discover RSS feeds from any website. Powered by feedfinder-ts for reliable RSS feed detection.
- Robust Detection: Uses feedfinder-ts under the hood for comprehensive RSS feed discovery
- Fast & Lightweight: Optimized for performance with minimal dependencies
- Node.js 22+
- pnpm (recommended) or npm
# Clone the repository
git clone <your-repo-url>
cd rss-finder
# Install dependencies
pnpm install
# Start development server
pnpm dev
Visit http://localhost:5173
to see the application.
# Build for production
pnpm build
Since this app is built with SvelteKit, it's compatible with multiple runtimes. Check the SvelteKit docs for platform-specific instructions.
POST /api/find-feeds
{
"url": "https://example.com"
}
Response:
{
"feeds": [
{
"title": "Example Blog RSS",
"url": "https://example.com/rss.xml",
"type": "application/rss+xml"
}
]
}
- Fork the repository
- Create a feature branch
- Make your changes
- Test thoroughly
- Submit a pull request
MIT
- feedfinder-ts - For reliable RSS feed detection