thedaviddias/front-end-checklist

ttfb

Use when auditing slow first responses on SSR pages, APIs, or cacheable HTML. Distinguish origin compute time from network latency and CDN cache misses before proposing a fix.

First seen Jun 8, 2026

Installation

$ npx skills add thedaviddias/front-end-checklist --skill ttfb

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from thedaviddias/front-end-checklist · top by installs.

npx skills add thedaviddias/front-end-checklist

Browse all from thedaviddias/front-end-checklist

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 74.1K
License MIT
Default branch main
Open issues 5
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

More metadata
category
performance
priority
medium
difficulty
intermediate
estimatedTime
10
source
frontendchecklist.io
url
https://frontendchecklist.io/en/rules/performance/ttfb

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,630 B
  • docs SUMMARY.md 187 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 8 installs

SKILL.md

Reduce Time to First Byte (TTFB)

TTFB is the foundation of page performance; if the server is slow to respond, all subsequent loading stages are delayed.

Quick Reference

  • Optimize server-side logic and database queries to speed up response generation
  • Use a Content Delivery Network (CDN) to serve content closer to users
  • Implement effective caching strategies at the server and edge levels

Check

Review the page's TTFB and identify any bottlenecks in the server-side processing or network transmission.

Fix

Optimize the server's response time by improving database queries, caching responses, and using a CDN.

Explain

Explain how TTFB impacts the entire page load process and why it is a critical starting point for performance optimization.

Code Review

Review server-rendered routes, API handlers, cache configuration, and database access on the critical path. Flag uncached HTML, slow synchronous work before the first byte, repeated upstream fetches, or expensive queries that keep TTFB above roughly 800ms.


For full implementation details, code examples, and framework-specific guidance, see references/rule.md.

Rule page: https://frontendchecklist.io/en/rules/performance/ttfb