Modern Web Development
Brandon Fernandez's comprehensive cursor rules for modern web development with TypeScript, Node.js, Next.js 14, React, Supabase, GraphQL, Tailwind CSS, Radix UI, and Shadcn UI.
Key Development Principles
Code Style and Architecture
- Write concise, technical responses with accurate TypeScript examples
- Employ functional, declarative programming while avoiding class-based approaches
- Prioritize iteration and modularization over code duplication
- Use descriptive variable names with auxiliary verbs (
isLoading, hasError)
- Implement the RORO pattern (Receive an Object, Return an Object)
JavaScript/TypeScript Standards
- Use
function keyword for pure functions
- Omit semicolons
- Leverage TypeScript exclusively, preferring interfaces over types
- Structure files as: exported component, subcomponents, helpers, static content, types
- Minimize unnecessary curly braces in conditionals
Error Handling
- Address errors and edge cases at function entry points
- Apply early returns for error conditions avoiding deep nesting
- Position the success path last for improved readability
- Use guard clauses for precondition validation
- Implement user-friendly error messaging
React and Next.js Guidelines
- Use functional components with TypeScript interfaces
- Write declarative JSX using
function declarations
- Style with Shadcn UI, Radix, and Tailwind CSS
- Implement mobile-first responsive design
- Minimize
use client, useEffect, and setState - favor React Server Components
- Employ Zod for form validation
- Wrap client components in Suspense with fallbacks
- Use dynamic loading for non-critical components
- Optimize images (WebP format, size data, lazy loading)
Data and State Management
- Leverage React Server Components for data fetching
- Implement the preload pattern to prevent waterfalls
- Use Supabase for real-time synchronization and state management
- Consider Vercel KV for chat history, rate limiting, and sessions
Supabase and GraphQL
- Use Supabase client for database interactions and subscriptions
- Implement Row Level Security (RLS) policies
- Leverage Supabase Auth, Storage, and Edge Functions
- Use Genql for type-safe GraphQL API interactions
- Optimize GraphQL queries to fetch only necessary data
Styling and Testing
Styling
- Apply Tailwind CSS utility-first approach
- Use Class Variance Authority (CVA) for component variants
Testing
- Implement unit tests for utilities and hooks
- Create integration tests for complex components
- Develop end-to-end tests for critical user flows
Accessibility and Documentation
Accessibility
- Ensure keyboard navigation throughout interfaces
- Implement proper ARIA labels and semantic roles
- Maintain WCAG-compliant color contrast ratios
Documentation
- Provide clear JSDoc comments for IDE intellisense
- Document Supabase schemas, RLS policies, and Edge Functions
1---2name: modern-web-development3description: Modern web development best practices for TypeScript, Next.js 14, React Server Components, Supabase, GraphQL, and Tailwind CSS.4---56# Modern Web Development78Brandon Fernandez's comprehensive cursor rules for modern web development with TypeScript, Node.js, Next.js 14, React, Supabase, GraphQL, Tailwind CSS, Radix UI, and Shadcn UI.910## Key Development Principles1112### Code Style and Architecture1314- Write concise, technical responses with accurate TypeScript examples15- Employ functional, declarative programming while avoiding class-based approaches16- Prioritize iteration and modularization over code duplication17- Use descriptive variable names with auxiliary verbs (`isLoading`, `hasError`)18- Implement the RORO pattern (Receive an Object, Return an Object)1920### JavaScript/TypeScript Standards2122- Use `function` keyword for pure functions23- Omit semicolons24- Leverage TypeScript exclusively, preferring interfaces over types25- Structure files as: exported component, subcomponents, helpers, static content, types26- Minimize unnecessary curly braces in conditionals2728### Error Handling2930- Address errors and edge cases at function entry points31- Apply early returns for error conditions avoiding deep nesting32- Position the success path last for improved readability33- Use guard clauses for precondition validation34- Implement user-friendly error messaging3536## React and Next.js Guidelines3738- Use functional components with TypeScript interfaces39- Write declarative JSX using `function` declarations40- Style with Shadcn UI, Radix, and Tailwind CSS41- Implement mobile-first responsive design42- Minimize `use client`, `useEffect`, and `setState` - favor React Server Components43- Employ Zod for form validation44- Wrap client components in Suspense with fallbacks45- Use dynamic loading for non-critical components46- Optimize images (WebP format, size data, lazy loading)4748## Data and State Management4950- Leverage React Server Components for data fetching51- Implement the preload pattern to prevent waterfalls52- Use Supabase for real-time synchronization and state management53- Consider Vercel KV for chat history, rate limiting, and sessions5455## Supabase and GraphQL5657- Use Supabase client for database interactions and subscriptions58- Implement Row Level Security (RLS) policies59- Leverage Supabase Auth, Storage, and Edge Functions60- Use Genql for type-safe GraphQL API interactions61- Optimize GraphQL queries to fetch only necessary data6263## Styling and Testing6465### Styling6667- Apply Tailwind CSS utility-first approach68- Use Class Variance Authority (CVA) for component variants6970### Testing7172- Implement unit tests for utilities and hooks73- Create integration tests for complex components74- Develop end-to-end tests for critical user flows7576## Accessibility and Documentation7778### Accessibility7980- Ensure keyboard navigation throughout interfaces81- Implement proper ARIA labels and semantic roles82- Maintain WCAG-compliant color contrast ratios8384### Documentation8586- Provide clear JSDoc comments for IDE intellisense87- Document Supabase schemas, RLS policies, and Edge Functions