{"id":44456402,"url":"https://github.com/takuan-osho/feed-finder","last_synced_at":"2026-02-12T17:36:43.703Z","repository":{"id":305329344,"uuid":"978536298","full_name":"takuan-osho/feed-finder","owner":"takuan-osho","description":"RSS/Atom feed finder","archived":false,"fork":false,"pushed_at":"2025-08-10T09:14:07.000Z","size":235,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-10T09:14:15.051Z","etag":null,"topics":["rss","rss-feed"],"latest_commit_sha":null,"homepage":"https://feedfinder.programarch.com","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/takuan-osho.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-06T06:19:19.000Z","updated_at":"2025-08-10T09:14:07.000Z","dependencies_parsed_at":"2025-07-19T16:55:57.598Z","dependency_job_id":"4a482d9c-bee6-4064-84fd-ca3afb250d23","html_url":"https://github.com/takuan-osho/feed-finder","commit_stats":null,"previous_names":["takuan-osho/feed-finder"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/takuan-osho/feed-finder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takuan-osho%2Ffeed-finder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takuan-osho%2Ffeed-finder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takuan-osho%2Ffeed-finder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takuan-osho%2Ffeed-finder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/takuan-osho","download_url":"https://codeload.github.com/takuan-osho/feed-finder/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takuan-osho%2Ffeed-finder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29374178,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T08:51:36.827Z","status":"ssl_error","status_checked_at":"2026-02-12T08:51:26.849Z","response_time":55,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["rss","rss-feed"],"created_at":"2026-02-12T17:36:42.716Z","updated_at":"2026-02-12T17:36:43.696Z","avatar_url":"https://github.com/takuan-osho.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Feed Finder\n\nA web application that automatically discovers RSS and Atom feeds from any website URL.\n\n[![Status](https://img.shields.io/badge/Status-Production%20Ready-green)](https://feedfinder.takuan-osho.com)\n[![React](https://img.shields.io/badge/React-19-blue)](#)\n[![TypeScript](https://img.shields.io/badge/TypeScript-5.8-blue)](#)\n\n## Demo\n\nhttps://feedfinder.takuan-osho.com\n\n## Features\n\n- **Automatic feed discovery**: Simply enter a URL to find RSS/Atom feeds\n- **Multi-strategy search**: HTML meta tag analysis + common path exploration in parallel\n- **Fast performance**: Optimized bundle (~180KB) with sub-2s initial load\n- **Security-focused**: Built-in SSRF protection, XSS prevention\n- **Responsive design**: Works on mobile and desktop\n\n## Tech Stack\n\n- **Frontend**: React 19 + TypeScript + Vite\n- **UI**: shadcn/ui + TailwindCSS v4\n- **Backend**: Cloudflare Workers\n- **Testing**: Vitest (63 tests passing)\n- **Code Quality**: Biome (lint/format) + lefthook\n- **Error Handling**: neverthrow\n\n## Requirements\n\n- Node.js 20.19.4 or higher\n- npm or yarn\n\n## Quick Start\n\n```bash\n# Clone the repository\ngit clone https://github.com/takuan-osho/feed-finder.git\ncd feed-finder\n\n# Install dependencies\nnpm install\n\n# Start development server\nnpm run dev\n```\n\nOpen http://localhost:5173 in your browser.\n\n## Development Commands\n\n```bash\n# Start development server\nnpm run dev\n\n# Build for production\nnpm run build\n\n# Preview production build\nnpm run preview\n\n# Run tests (watch mode)\nnpm run test\n\n# Run tests (single run)\nnpm run test:run\n\n# Lint code\nnpm run lint\n\n# Deploy to Cloudflare Workers\nnpm run deploy\n```\n\n## Project Structure\n\n```\nfeed-finder/\n├── src/                    # Frontend source\n│   ├── components/         # React components\n│   │   ├── ui/            # Base UI components\n│   │   ├── SearchForm.tsx # Search form component\n│   │   └── ResultDisplay.tsx # Results display\n│   ├── lib/               # Utility functions\n│   └── App.tsx            # Main app component\n├── worker/                # Cloudflare Workers\n│   ├── index.ts          # API implementation\n│   └── *.test.ts         # Test files\n├── .kiro/specs/          # Project specifications\n└── .github/workflows/    # CI/CD configuration\n```\n\n## Testing\n\nThis project follows Test-Driven Development (TDD):\n\n- **63 tests** all passing\n- **Performance tests** for parallel processing\n- **Bundle optimization tests**\n- **Security tests** (SSRF, XSS protection)\n\n## Configuration\n\n### Adding Allowed Domains\n\nAdd domains to the `ALLOWED_ORIGINS` array in `worker/index.ts`:\n\n```typescript\nconst ALLOWED_ORIGINS = [\n  \"http://localhost:5173\",\n  \"https://yourdomain.com\", // Add your domain\n];\n```\n\n### Customizing Styles\n\nThis project uses TailwindCSS v4. Edit styles in any component within the `src/` directory.\n\n## Performance\n\n- **Initial load**: Under 2 seconds\n- **Feed search**: Under 5 seconds\n- **Bundle size**: ~180KB (58KB gzipped)\n- **Parallel processing**: HTML parsing and common path search run concurrently\n\n## Contributing\n\n1. Fork the repository\n2. Create a feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## License\n\nThis project is licensed under the [GNU Affero General Public License v3](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftakuan-osho%2Ffeed-finder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftakuan-osho%2Ffeed-finder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftakuan-osho%2Ffeed-finder/lists"}