一键导入
pwa-service-worker
Service worker management, offline support, cache strategies, and SW debugging.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Service worker management, offline support, cache strategies, and SW debugging.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | pwa-service-worker |
| description | Service worker management, offline support, cache strategies, and SW debugging. |
Note: This portfolio has a hand-written service worker (public/sw.js) but is NOT a PWA. There is no manifest.json.
File: public/sw.js
Current version: v4
Cache strategy by path:
| Path pattern | Strategy | Notes |
|---|---|---|
_next/static/ | Network-first | Prevents stale chunks |
_next/data/ | Network-first | Fresh page data |
/api/ | Network-only | Never cache API responses |
fonts/ | Cache-first | Static, immutable assets |
images/ | Cache-first | Static images |
| Other | Stale-while-revalidate | Balanced approach |
Chrome DevTools:
Ctrl+Shift+R (Windows) / Cmd+Shift+R (Mac)Via code (for users):
The service worker includes a version check. When the version changes, the old cache is automatically cleared in the install event handler.
When making changes to public/sw.js:
CACHE_VERSION constant:const CACHE_VERSION = 'v5'; // was v4
Add to the urlsToCache array in the install handler:
const urlsToCache = [
'/',
'/offline',
'/fonts/inter-var.woff2',
'/new-static-asset.js',
];
Change cache strategy for a path:
In the fetch handler, add a new case:
if (url.pathname.startsWith('/new-path/')) {
// Network-first strategy
event.respondWith(
fetch(event.request)
.then(response => {
const responseClone = response.clone();
caches.open(CACHE_NAME).then(cache => {
cache.put(event.request, responseClone);
});
return response;
})
.catch(() => caches.match(event.request))
);
return;
}
Cache-first (static assets):
Request → Cache hit? → Yes → Return cached
→ No → Fetch → Cache → Return
Best for: fonts, images, immutable assets
Network-first (API, dynamic):
Request → Fetch → OK? → Return response → Cache
→ Fail? → Cache hit? → Return cached
→ No? → Offline fallback
Best for: API calls, dynamic pages, _next/static/
Stale-while-revalidate:
Request → Cache hit? → Yes → Return cached + fetch in background
→ No → Fetch → Cache → Return
Best for: pages, HTML, semi-static content
Current offline page: /offline (if configured)
To add offline support for a route:
urlsToCache in the install handlerProblem: Stale content after deployment
# 1. Check if SW is registered
# DevTools → Application → Service Workers → "Active" state
# 2. Check cache contents
# DevTools → Application → Cache Storage → expand caches
# 3. Force update
# DevTools → Service Workers → "Update on reload" checkbox → Reload
Problem: Page shows old version
CACHE_VERSION was incremented in sw.jsProblem: Assets not loading
Problem: SW not registering
public/sw.js existsService workers add minimal overhead:
Keep the SW lean:
network-first for frequently updated contentCACHE_VERSION after changes/api/)# Check SW status
# DevTools → Application → Service Workers
# Check caches
# DevTools → Application → Cache Storage
# Force SW update
# DevTools → Service Workers → "Update on reload" → Reload
# Clear everything
# DevTools → Application → Storage → "Clear site data"
Migrate from Next.js 15 to Next.js 16 and handle breaking changes
Configure Content Security Policy and security headers for the portfolio
Deploy Next.js to Cloudflare Workers using OpenNext adapter
Manage the canary token honeypot system for detecting security scanning
Write, debug, and optimize GROQ queries for Sanity CMS in this portfolio
Advanced TypeScript patterns and type safety as used in this portfolio