bramus / chrome-for-developers-rss

Cloudflare Worker that generates RSS Feeds for developer.chrome.com

Home Page:https://chrome-for-developers-rss.bramus.workers.dev/blog

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RSS Feeds for developer.chrome.com (Cloudflare Worker)

This repo contains a Cloudflare Worker that generates RSS Feeds for the various types of Dynamic Content that https://developer.chrome.com/ has. The worker parses the raw data and transforms them to RSS 2.0.

Live Endpoints

Warning: the “all” feed is a very noisy one as it contains all changes to all pages – you’ll get an RSS entry for each and every change, no matter how big or small it was.

Dev

Deploy

Raw Data Feeds

Blog

curl 'https://developer.chrome.com/_d/dynamic_content' \
  -H 'accept: */*' \
  -H 'accept-language: en-US,en;q=0.9,nl;q=0.8,fr;q=0.7' \
  -H 'content-type: text/plain;charset=UTF-8' \
  --data-raw '[null,null,null,"type:blog",null,null,null,null,10,null,null,null,2]' \
  --compressed

Case Studies

curl 'https://developer.chrome.com/_d/dynamic_content' \
  -H 'accept: */*' \
  -H 'accept-language: en-US,en;q=0.9,nl;q=0.8,fr;q=0.7' \
  -H 'content-type: text/plain;charset=UTF-8' \
  --data-raw '[null,null,null,"type:case_study",null,null,null,null,10,null,null,null,1]' \
  --compressed

All

curl 'https://developer.chrome.com/_d/dynamic_content' \
  -H 'accept: */*' \
  -H 'accept-language: en-US,en;q=0.9,nl;q=0.8,fr;q=0.7' \
  -H 'content-type: text/plain;charset=UTF-8' \
  --data-raw '[null, null, null, "tenant:chrome", null, null, null, null, 100, null, null, null, 2, 1]' \
  --compressed

License

This project is released under the MIT public license. See the enclosed LICENSE for details.

About

Cloudflare Worker that generates RSS Feeds for developer.chrome.com

https://chrome-for-developers-rss.bramus.workers.dev/blog

License:MIT License


Languages

Language:JavaScript 100.0%