{"id":34962725,"url":"https://github.com/matthewruzzi/sitemap-to-feed","last_synced_at":"2026-05-25T05:03:30.564Z","repository":{"id":319581279,"uuid":"1079028052","full_name":"matthewruzzi/sitemap-to-feed","owner":"matthewruzzi","description":"Deno based cli tool to convert sitemaps to rss feeds","archived":false,"fork":false,"pushed_at":"2026-02-06T00:51:57.000Z","size":19,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-06T10:44:15.871Z","etag":null,"topics":["cli","cli-tool","command-line","command-line-tool","deno","deno-cli","deno-kv","feed","feeds","javascript","rss","rss-feed","sitemap","sitemaps","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/matthewruzzi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-18T23:50:04.000Z","updated_at":"2026-02-06T00:52:00.000Z","dependencies_parsed_at":null,"dependency_job_id":"773a4c26-6dbe-49bc-9900-46d6d812974f","html_url":"https://github.com/matthewruzzi/sitemap-to-feed","commit_stats":null,"previous_names":["matthewruzzi/sitemap-to-feed"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/matthewruzzi/sitemap-to-feed","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matthewruzzi%2Fsitemap-to-feed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matthewruzzi%2Fsitemap-to-feed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matthewruzzi%2Fsitemap-to-feed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matthewruzzi%2Fsitemap-to-feed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/matthewruzzi","download_url":"https://codeload.github.com/matthewruzzi/sitemap-to-feed/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matthewruzzi%2Fsitemap-to-feed/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33461092,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-25T02:24:28.008Z","status":"ssl_error","status_checked_at":"2026-05-25T02:23:23.339Z","response_time":57,"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":["cli","cli-tool","command-line","command-line-tool","deno","deno-cli","deno-kv","feed","feeds","javascript","rss","rss-feed","sitemap","sitemaps","typescript"],"created_at":"2025-12-26T22:49:40.303Z","updated_at":"2026-05-25T05:03:30.559Z","avatar_url":"https://github.com/matthewruzzi.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# sitemap-to-feed\n\n## Usage\n```\nUsage: sitemap-to-feed [options]\n\nOptions: \n  --help, -h           Show this help message\n  --sitemap \u003curl\u003e      Sitemap URL\n  --title \u003ctitle\u003e      Feed title\n  --site \u003curl\u003e         Site homepage\n  --output, -o \u003cfile\u003e  Write feed to file (optional)\n  --scrape-titles      Enable title scraping (optional)\n  --cache-file \u003cfile\u003e  Path to save cache file (optional)\n  --filter \u003cregex\u003e     Only include URLs matching this regex (optional)\n                       Pattern matches anywhere in URL (partial match)\n                       Use ^ and $ anchors for start/end matching\n\nNote: Output is always sent to stdout.\n\nExamples\n  sitemap-to-feed --sitemap \"https://sitemaps.org/sitemap.xml\" --title \"Sitemaps\" --site \"https://sitemaps.org/\"\n  sitemap-to-feed --sitemap \"https://sitemaps.org/sitemap.xml\" --title \"Sitemaps\" --site \"https://sitemaps.org/\" \u003e \"feed.rss\"\n  sitemap-to-feed --sitemap \"https://sitemaps.org/sitemap.xml\" --title \"Sitemaps\" --site \"https://sitemaps.org/\" --output \"feed.rss\"\n  sitemap-to-feed --sitemap \"https://sitemaps.org/sitemap.xml\" --title \"Sitemaps\" --site \"https://sitemaps.org/\" --scrape-titles\n  sitemap-to-feed --sitemap \"https://sitemaps.org/sitemap.xml\" --title \"Sitemaps\" --site \"https://sitemaps.org/\" --scrape-titles --cache-file kv.sqlite3\n  sitemap-to-feed --sitemap \"https://example.com/sitemap.xml\" --title \"Example Blog\" --site \"https://example.com/\" --filter \"blog\"\n  sitemap-to-feed --sitemap \"https://example.com/sitemap.xml\" --title \"Example Blog\" --site \"https://example.com/\" --filter \"/posts/\"\n  sitemap-to-feed --sitemap \"https://example.com/sitemap.xml\" --title \"Example Blog\" --site \"https://example.com/\" --filter \"^https://example\\.com/blog/\"\n```\n\n## Install\n```sh\ngit clone https://github.com/matthewruzzi/sitemap-to-feed.git\ncd sitemap-to-feed\ndeno install --global --config deno.json --name sitemap-to-feed --unstable-kv --allow-net --allow-read --allow-write main.ts\n```\n\nRequires [Deno](https://deno.com)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatthewruzzi%2Fsitemap-to-feed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmatthewruzzi%2Fsitemap-to-feed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatthewruzzi%2Fsitemap-to-feed/lists"}