From frontend-developer
Optimizes frontend performance through Core Web Vitals fixes, bundle analysis and code splitting, lazy loading, tree shaking, and image optimization. Use for improving page speed and load times.
How this skill is triggered — by the user, by Claude, or both
Slash command
/frontend-developer:performance-optimizerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Optimize frontend performance for faster load times and better user experience.
Optimize frontend performance for faster load times and better user experience.
Measure with Lighthouse, optimize images, code split, lazy load, minimize bundle size, implement caching.
Largest Contentful Paint (LCP):
First Input Delay (FID):
Cumulative Layout Shift (CLS):
Analyze bundle:
# With webpack-bundle-analyzer
npm install --save-dev webpack-bundle-analyzer
# Add to webpack config
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
plugins: [
new BundleAnalyzerPlugin()
]
# Or with Vite
npm install --save-dev rollup-plugin-visualizer
Code splitting:
// Route-based splitting
const Dashboard = lazy(() => import('./pages/Dashboard'));
const Profile = lazy(() => import('./pages/Profile'));
function App() {
return (
<Suspense fallback={<Loading />}>
<Routes>
<Route path="/dashboard" element={<Dashboard />} />
<Route path="/profile" element={<Profile />} />
</Routes>
</Suspense>
);
}
Component-based splitting:
const HeavyChart = lazy(() => import('./HeavyChart'));
function Dashboard() {
return (
<div>
<Suspense fallback={<ChartSkeleton />}>
<HeavyChart data={data} />
</Suspense>
</div>
);
}
Tree shaking:
// Bad: Imports entire library
import _ from 'lodash';
// Good: Import only what you need
import debounce from 'lodash/debounce';
// Or use lodash-es
import { debounce } from 'lodash-es';
Use Next.js Image:
import Image from 'next/image';
<Image
src="/hero.jpg"
alt="Hero image"
width={1200}
height={600}
priority // For above-fold images
placeholder="blur"
/>
Lazy load images:
<img
src="image.jpg"
alt="Description"
loading="lazy"
width="800"
height="600"
/>
Use modern formats:
<picture>
<source srcSet="image.avif" type="image/avif" />
<source srcSet="image.webp" type="image/webp" />
<img src="image.jpg" alt="Description" />
</picture>
Responsive images:
<img
srcSet="
image-320w.jpg 320w,
image-640w.jpg 640w,
image-1280w.jpg 1280w
"
sizes="(max-width: 640px) 100vw, 640px"
src="image-640w.jpg"
alt="Description"
/>
Minimize JavaScript:
# Production build
npm run build
# Check bundle size
ls -lh dist/assets/*.js
Remove unused code:
// Use ES modules for tree shaking
export { specificFunction };
// Avoid default exports of large objects
Defer non-critical JS:
<script src="analytics.js" defer></script>
<script src="non-critical.js" async></script>
Critical CSS:
// Inline critical CSS
<style dangerouslySetInnerHTML={{
__html: criticalCSS
}} />
// Load rest async
<link
rel="preload"
href="/styles.css"
as="style"
onLoad="this.onload=null;this.rel='stylesheet'"
/>
Remove unused CSS:
# Use PurgeCSS
npm install --save-dev @fullhuman/postcss-purgecss
# Or use Tailwind's built-in purge
CSS-in-JS optimization:
// Use styled-components with babel plugin
// Or use zero-runtime solutions like Linaria
Intersection Observer:
function LazyComponent() {
const [isVisible, setIsVisible] = useState(false);
const ref = useRef();
useEffect(() => {
const observer = new IntersectionObserver(
([entry]) => {
if (entry.isIntersecting) {
setIsVisible(true);
observer.disconnect();
}
},
{ threshold: 0.1 }
);
if (ref.current) {
observer.observe(ref.current);
}
return () => observer.disconnect();
}, []);
return (
<div ref={ref}>
{isVisible ? <HeavyComponent /> : <Placeholder />}
</div>
);
}
React.lazy with retry:
function lazyWithRetry(componentImport) {
return lazy(() =>
componentImport().catch(() => {
// Retry once
return componentImport();
})
);
}
const Dashboard = lazyWithRetry(() => import('./Dashboard'));
Service Worker:
// Cache static assets
self.addEventListener('install', (event) => {
event.waitUntil(
caches.open('v1').then((cache) => {
return cache.addAll([
'/',
'/styles.css',
'/script.js',
]);
})
);
});
HTTP caching headers:
# Static assets (immutable)
Cache-Control: public, max-age=31536000, immutable
# HTML (revalidate)
Cache-Control: no-cache
# API responses
Cache-Control: private, max-age=300
React Query caching:
const queryClient = new QueryClient({
defaultOptions: {
queries: {
staleTime: 5 * 60 * 1000, // 5 minutes
cacheTime: 10 * 60 * 1000, // 10 minutes
},
},
});
Font loading:
@font-face {
font-family: 'MyFont';
src: url('/fonts/myfont.woff2') format('woff2');
font-display: swap; /* Show fallback immediately */
}
Preload fonts:
<link
rel="preload"
href="/fonts/myfont.woff2"
as="font"
type="font/woff2"
crossorigin
/>
Variable fonts:
/* Single file for multiple weights */
@font-face {
font-family: 'Inter';
src: url('/fonts/inter-var.woff2') format('woff2');
font-weight: 100 900;
}
Avoid layout thrashing:
// Bad: Read-write-read-write
element.style.width = element.offsetWidth + 10 + 'px';
element2.style.width = element2.offsetWidth + 10 + 'px';
// Good: Batch reads, then writes
const width1 = element.offsetWidth;
const width2 = element2.offsetWidth;
element.style.width = width1 + 10 + 'px';
element2.style.width = width2 + 10 + 'px';
Use CSS transforms:
/* Bad: Triggers layout */
.element {
left: 100px;
}
/* Good: GPU accelerated */
.element {
transform: translateX(100px);
}
Virtualize long lists:
import { useVirtualizer } from '@tanstack/react-virtual';
function VirtualList({ items }) {
const parentRef = useRef();
const virtualizer = useVirtualizer({
count: items.length,
getScrollElement: () => parentRef.current,
estimateSize: () => 50,
});
return (
<div ref={parentRef} style={{ height: '400px', overflow: 'auto' }}>
<div style={{ height: `${virtualizer.getTotalSize()}px` }}>
{virtualizer.getVirtualItems().map(virtualItem => (
<div
key={virtualItem.key}
style={{
position: 'absolute',
top: 0,
left: 0,
width: '100%',
transform: `translateY(${virtualItem.start}px)`,
}}
>
{items[virtualItem.index].name}
</div>
))}
</div>
</div>
);
}
Web Vitals:
import { getCLS, getFID, getFCP, getLCP, getTTFB } from 'web-vitals';
function sendToAnalytics(metric) {
// Send to analytics service
console.log(metric);
}
getCLS(sendToAnalytics);
getFID(sendToAnalytics);
getFCP(sendToAnalytics);
getLCP(sendToAnalytics);
getTTFB(sendToAnalytics);
Performance Observer:
const observer = new PerformanceObserver((list) => {
for (const entry of list.getEntries()) {
console.log(entry.name, entry.duration);
}
});
observer.observe({ entryTypes: ['measure', 'navigation'] });
Loading:
Rendering:
Caching:
Monitoring:
Performance budgets:
{
"budgets": [{
"resourceSizes": [{
"resourceType": "script",
"budget": 200
}, {
"resourceType": "image",
"budget": 500
}]
}]
}
Lighthouse CI:
# .lighthouserc.json
{
"ci": {
"assert": {
"assertions": {
"categories:performance": ["error", {"minScore": 0.9}],
"first-contentful-paint": ["error", {"maxNumericValue": 2000}]
}
}
}
}
Regular audits:
npx claudepluginhub p/armanzeroeight-frontend-developer-plugins-frontend-developerOptimizes frontend performance via Core Web Vitals (LCP, INP, CLS), code splitting, tree shaking, image/font optimization (WebP, AVIF, lazy loading), service workers, and webpack-bundle-analyzer. Use for diagnosing slow loads, bundle size reduction, and CI budgets.
Guides web performance optimization with bundle analysis, code splitting, image optimization, caching headers, and virtual lists.
Optimizes web app performance using React code splitting, webpack bundles, image optimization, service workers, caching, and Core Web Vitals monitoring for faster loads and better metrics.