nextjs15-performance▌
srbhr/resume-matcher · updated Apr 8, 2026
nextjs15-performance
Before writing Next.js code
- Read
docs/agent/architecture/nextjs-critical-fixes.mdfor full patterns - Check existing components in
apps/frontend/components/for examples
Critical Rules (always apply)
Waterfalls
- Use
Promise.all()for independent fetches - Wrap slow data in
<Suspense>boundaries - Defer
awaitinto branches where needed
Bundle Size
- NO barrel imports:
import X from 'lucide-react'❌ - YES direct imports:
import X from 'lucide-react/dist/esm/icons/x'✅ - Use
next/dynamicfor heavy components (editors, charts, PDF viewers) - Defer analytics with
ssr: false
Server Actions
- ALWAYS check auth INSIDE the action, not just middleware
- Verify resource ownership before mutations
Production Build
- Users run
npm run build && npm run start, NOTnpm run dev - Docker must use standalone output, not dev mode
Quick Check Before PR
[ ] No sequential awaits for independent data
[ ] Icons imported directly
[ ] Heavy components use next/dynamic
[ ] Server Actions have auth inside
[ ] Suspense around slow fetches
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.8★★★★★36 reviews- ★★★★★Noah Menon· Dec 28, 2024
I recommend nextjs15-performance for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Noah Abbas· Dec 12, 2024
nextjs15-performance fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Chaitanya Patil· Dec 8, 2024
nextjs15-performance fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Piyush G· Nov 27, 2024
Registry listing for nextjs15-performance matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Fatima Jain· Nov 19, 2024
Keeps context tight: nextjs15-performance is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Kiara Singh· Nov 3, 2024
Registry listing for nextjs15-performance matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Kiara Jain· Oct 22, 2024
nextjs15-performance reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Shikha Mishra· Oct 18, 2024
nextjs15-performance reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Noah Verma· Oct 10, 2024
nextjs15-performance is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Sofia Iyer· Sep 17, 2024
nextjs15-performance reduced setup friction for our internal harness; good balance of opinion and flexibility.
showing 1-10 of 36