thedaviddias/front-end-checklist

cdn

Use when auditing slow page loads, heavy assets, or rendering delays related to Use a content delivery network. Verify the actual bottleneck in DevTools, Lighthouse, or field data before recommending changes.

First seen Jun 8, 2026

Installation

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

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
high
difficulty
intermediate
estimatedTime
30
source
frontendchecklist.io
url
https://frontendchecklist.io/en/rules/performance/cdn

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,628 B
  • docs SUMMARY.md 219 B

History

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

SKILL.md

Use a content delivery network

A CDN serves static assets from geographically distributed servers—users download from the nearest location, dramatically reducing latency and improving load times.

Quick Reference

  • CDNs serve content from edge servers closest to users
  • Reduces latency by 50-70% for global users
  • Handles traffic spikes and provides DDoS protection
  • Popular options: Cloudflare, Vercel, AWS CloudFront, Fastly

Check

Check if static assets are served from a CDN and if the CDN is properly configured.

Fix

Configure a CDN to serve static assets with proper caching headers and geographic distribution.

Explain

Explain how CDNs reduce latency by serving content from geographically distributed servers.

Code Review

Review the routes, assets, and loading behavior that affect Use a content delivery network. Flag exact files, requests, or rendering steps that add unnecessary network, CPU, or layout cost, and describe the measurement method used to confirm the issue.


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

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