nextjs-full-stack
2
总安装量
2
周安装量
#64341
全站排名
安装命令
npx skills add https://github.com/sraloff/gravityboots --skill nextjs-full-stack
Agent 安装分布
opencode
2
gemini-cli
2
claude-code
2
github-copilot
2
codex
2
kimi-cli
2
Skill 文档
Next.js Full Stack Patterns
When to use this skill
- Building features in Next.js (App Router).
- Creating API endpoints (Route Handlers).
- Implementing Server Actions for mutations.
1. App Router Structure
- Colocation: Keep related files (helpers, components, styles) inside the route segment folder unless they are truly shared.
- Pages:
page.tsxshould remain light; import client/server components for the UI. - Layouts: Use
layout.tsxfor shared UI (nav, unrelated to route params) andtemplate.tsxif you need state reset on navigation.
2. Server Components (RSC)
- Default: All components are Server Components by default.
- Data Fetching: Fetch data directly in RSCs (async/await). No
useEffectneeded. - Secrets: Server components can safely access
process.envsecrets.
3. Server Actions
- Mutations: Use Server Actions (
'use server') for form submissions and simple mutations. - Validation: Validate inputs (Zod) inside the action before processing.
- Revalidation: Use
revalidatePathorrevalidateTagto update cache after mutation.
4. Middleware
- Auth: Use middleware for route protection (redirecting unauthenticated users).
- Performance: Keep middleware lightweight (Edge runtime compatible).