Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
node-version: "22"
node-version: "24"
cache: npm

- name: Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-cloudflare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
node-version: "22"
node-version: "24"
cache: npm

- name: Install dependencies
Expand Down
30 changes: 4 additions & 26 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,11 @@
<img src="https://img.shields.io/badge/Cloudflare-Workers-F38020?logo=cloudflare&logoColor=white" alt="Cloudflare Workers" />
<img src="https://img.shields.io/badge/Cloudflare-D1-F38020?logo=cloudflare&logoColor=white" alt="Cloudflare D1" />
<img src="https://img.shields.io/badge/Cron-Triggers-F38020?logo=cloudflare&logoColor=white" alt="Cron Triggers" />
<img src="https://img.shields.io/badge/Node-22-339933?logo=node.js&logoColor=white" alt="Node 22" />
<img src="https://img.shields.io/badge/Node-24-339933?logo=node.js&logoColor=white" alt="Node 24" />
<a href="https://github.com/boringcode-dev/feedreader-edge/actions/workflows/ci.yml"><img src="https://github.com/boringcode-dev/feedreader-edge/actions/workflows/ci.yml/badge.svg?branch=main" alt="CI" /></a>
<img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License: MIT" />
</p>

<p align="center">
<img src="https://img.shields.io/badge/Lighthouse_Performance-100-brightgreen" alt="Lighthouse Performance: 100" />
<img src="https://img.shields.io/badge/Lighthouse_Accessibility-100-brightgreen" alt="Lighthouse Accessibility: 100" />
<img src="https://img.shields.io/badge/Lighthouse_Best_Practices-100-brightgreen" alt="Lighthouse Best Practices: 100" />
<img src="https://img.shields.io/badge/Lighthouse_SEO-100-brightgreen" alt="Lighthouse SEO: 100" />
<img src="https://img.shields.io/badge/Page_weight-~42_KB-blue" alt="Page weight: ~42 KB" />
</p>

---

## Screenshot
Expand All @@ -41,23 +33,9 @@

`feedreader` is server-rendered HTML with vanilla JS/CSS — no framework runtime, no client hydration, no bundler payload. That keeps it genuinely tiny and fast, not just "fast for a SPA."

Lighthouse against the production deployment (mobile, simulated throttling), measured 2026-06-23:

| Category | Score |
| --------------- | ----: |
| Performance | 100 |
| Accessibility | 100 |
| Best Practices | 100 |
| SEO | 100 |
Lighthouse against the production deployment (mobile, simulated throttling):

| Metric | Value |
| ------------------------ | -----: |
| First Contentful Paint | 0.9 s |
| Largest Contentful Paint | 1.1 s |
| Time to Interactive | 1.1 s |
| Total Blocking Time | 20 ms |
| Cumulative Layout Shift | 0.002 |
| Total page weight | ~42 KB |
![Lighthouse report](docs/assets/lighthouse-report.png)

Reproduce locally:

Expand Down Expand Up @@ -182,7 +160,7 @@ docs/assets/ README screenshots and supporting images

### Prerequisites

- Node.js 22+
- Node.js 24+
- npm
- a Cloudflare account for remote deployment

Expand Down
Binary file added docs/assets/lighthouse-report.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"type": "module",
"engines": {
"node": ">=22.0.0"
"node": ">=24.0.0"
},
"scripts": {
"dev": "wrangler dev --config platforms/cloudflare/wrangler.toml",
Expand Down