惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
I
InfoQ
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 【当耐特】
小众软件
小众软件
B
Blog RSS Feed
大猫的无限游戏
大猫的无限游戏
博客园 - 三生石上(FineUI控件)
Engineering at Meta
Engineering at Meta
人人都是产品经理
人人都是产品经理
Microsoft Security Blog
Microsoft Security Blog
Last Week in AI
Last Week in AI
H
Help Net Security
爱范儿
爱范儿
云风的 BLOG
云风的 BLOG
博客园 - 司徒正美
Y
Y Combinator Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Microsoft Azure Blog
Microsoft Azure Blog
L
LangChain Blog
WordPress大学
WordPress大学
GbyAI
GbyAI
Google DeepMind News
Google DeepMind News
腾讯CDC

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
CLAUDE.md for Angular: 13 Rules That Make AI Write Idioma...
Olivia Craft · 2026-05-22 · via DEV Community

Angular is the most opinionated framework in the frontend ecosystem — strong conventions, strict TypeScript, modules, services, guards, pipes, and a CLI that generates everything. But Claude Code doesn't know which of those conventions you've adopted, which RxJS patterns your team allows, or whether you're using standalone components or NgModules.

Without a CLAUDE.md, you get components with lifecycle hooks in the wrong order, services that manage state in ways that conflict with your store, and reactive chains that mix imperative and reactive patterns in the same file.

These 13 rules fix that.


Rule 1: Standalone components or NgModules — pick one and lock it in

Architecture: standalone components (Angular 17+).
No NgModule declarations. All components use standalone: true.
Imports declared per-component. AppModule does not exist.

Enter fullscreen mode Exit fullscreen mode

Or if you're on an older codebase:

Architecture: NgModule-based. All components declared in a feature module.
No standalone components. Shared components live in SharedModule.

Enter fullscreen mode Exit fullscreen mode

Angular supports both patterns. Claude will mix them if you don't specify.


Rule 2: RxJS — operators allowed and banned

RxJS patterns: use operators from rxjs/operators only.
Allowed: switchMap, mergeMap, exhaustMap, takeUntilDestroyed, combineLatest, forkJoin.
Banned: nested subscribes. Banned: manual unsubscribe in ngOnDestroy (use takeUntilDestroyed).
Banned: tap() for side effects that belong in effects/services.

Enter fullscreen mode Exit fullscreen mode

Nested subscribes and missing unsubscribes are the most common AI-generated Angular bugs. This rule eliminates them.


Rule 3: State management — one pattern

State: [NgRx / Signals / Services with BehaviorSubject — pick one].
No mixing state patterns across features.
Component state: signals. Cross-feature state: [your choice].
No local state in services unless it's feature-scoped.

Enter fullscreen mode Exit fullscreen mode

Claude will happily mix BehaviorSubject services with NgRx effects. This forces consistency.


Rule 4: HTTP calls live in services, never components

All HTTP requests go through injectable services. Components call service methods,
never HttpClient directly. Services return Observables or Promises — never
subscribe inside a service (let the component/effect handle subscription).

Enter fullscreen mode Exit fullscreen mode

Without this rule, Claude puts this.http.get() calls directly in components.


Rule 5: Typed reactive forms, not template-driven

Forms: ReactiveFormsModule only. No ngModel. No template-driven forms.
All FormGroups strongly typed with FormGroup<{field: FormControl<type>}>.
Validators are functions — no inline validator logic in templates.

Enter fullscreen mode Exit fullscreen mode

Template-driven forms and reactive forms coexisting in a codebase create a maintenance nightmare. This rule prevents it.


Rule 6: Lazy loading for every feature route

All feature routes use loadComponent() (standalone) or loadChildren() (NgModule).
No eagerly loaded feature components in the root router.
Route guards are functional guards (CanActivateFn), not class-based.

Enter fullscreen mode Exit fullscreen mode

Claude defaults to eager loading unless told otherwise. Functional guards are the Angular 15+ standard; class-based guards are deprecated.


Rule 7: Change detection — OnPush everywhere

ChangeDetectionStrategy.OnPush on all components.
No manual ChangeDetectorRef.detectChanges() except in documented edge cases.
Use async pipe for Observable subscriptions in templates.
Input mutations forbidden — always create new objects/arrays.

Enter fullscreen mode Exit fullscreen mode

Default change detection causes silent performance issues. OnPush everywhere is non-negotiable in production Angular.


Rule 8: Dependency injection — providedIn root vs feature

Services that are app-wide: providedIn: 'root'.
Services that are feature-scoped: provided in the feature module or route.
No service instantiation with new — always inject.
Constructor injection only — no inject() function except in functional guards/resolvers.

Enter fullscreen mode Exit fullscreen mode

Or if you prefer the functional DI style:

Use inject() function for all DI — no constructor parameters for injected deps.

Enter fullscreen mode Exit fullscreen mode

Pick one and enforce it — Claude will mix both.


Rule 9: Component communication — Input/Output, not service for siblings

Parent-to-child: @Input() with required: true where applicable.
Child-to-parent: @Output() EventEmitter.
Sibling communication: shared service with signal or BehaviorSubject.
No direct component references between siblings.

Enter fullscreen mode Exit fullscreen mode

Without this rule, Claude creates service-based communication even for simple parent-child interactions.


Rule 10: Pipe usage — pure pipes only in templates

Custom pipes: always pure (default). No impure pipes except for documented cases.
No method calls in templates that return new objects/arrays — use pipes or memoization.
No complex logic in template expressions — extract to component properties or pipes.

Enter fullscreen mode Exit fullscreen mode

Impure pipes re-execute on every change detection cycle. Method calls in templates with OnPush break memoization.


Rule 11: Testing — TestBed for components, plain for services

Component tests: TestBed.configureTestingModule() with shallow rendering.
Mock all service dependencies with jasmine.createSpyObj() or jest.fn().
Service tests: instantiate directly, no TestBed unless HttpClientTestingModule needed.
Test file naming: component.spec.ts colocated with component.

Enter fullscreen mode Exit fullscreen mode

Claude often uses TestBed for service tests unnecessarily, adding setup overhead.


Rule 12: Error handling — HTTP interceptors, not component catch blocks

HTTP error handling: global HttpInterceptor that catches and transforms errors.
Components never handle HTTP errors directly — they react to service state.
User-facing errors surfaced via a notification service, not alert() or console.error().

Enter fullscreen mode Exit fullscreen mode

Without this, Claude adds try/catch in every component method that calls a service.


Rule 13: File structure — feature-first, not type-first

File structure: feature-based, not type-based.
/features/user-profile/user-profile.component.ts
/features/user-profile/user-profile.service.ts
/features/user-profile/user-profile.routes.ts
NOT: /components/, /services/, /pipes/ at root level.
Shared utilities: /shared/ directory with explicit barrel exports.

Enter fullscreen mode Exit fullscreen mode

Type-first structure (all components in /components/) breaks when teams scale. Feature-first keeps related code together.


The CLAUDE.md for Angular (copy this)

# CLAUDE.md

## Stack
- Framework: Angular 17+ (standalone components)
- State: Signals for local, NgRx for global
- Forms: ReactiveFormsModule only
- HTTP: HttpClient via services + interceptors
- Testing: Jest + Angular Testing Library

## Architecture rules
- Standalone components everywhere — no NgModules
- OnPush change detection on all components
- RxJS: no nested subscribes, use takeUntilDestroyed for cleanup
- HTTP calls in services only — never in components
- Lazy loading for all feature routes (loadComponent)
- Functional route guards (CanActivateFn) — no class-based guards
- Feature-first directory structure
- Injectable services with providedIn: 'root' for app-wide, feature-provided for scoped

## Banned patterns
- ngModel and template-driven forms
- Nested RxJS subscribes
- Eagerly loaded feature components
- Direct component references between siblings
- Method calls in templates that return objects/arrays
- alert() or console.error() for user-facing errors
- Class-based route guards

## Testing conventions
- Component tests: TestBed + shallow rendering
- Service tests: direct instantiation
- All specs colocated: feature.component.spec.ts

Enter fullscreen mode Exit fullscreen mode


Why Angular needs this more than other frameworks

Angular's CLI generates consistent boilerplate — but it generates it for the default patterns, not your patterns. Once you've adopted signals over RxJS for local state, or switched to standalone components, the CLI and Claude both need to know. Without explicit rules, every new file is a coin flip between the old Angular and the new Angular.

The CLAUDE.md doesn't fight Angular's conventions — it clarifies which version of those conventions applies to your project.


Part of a series: CLAUDE.md files for Go, Rust, TypeScript/Node.js, Python, Java, C#/.NET, PHP, Ruby, Elixir, Scala, Haskell, C++, Vue.js/Nuxt, React/Next.js, Flutter/Dart, Swift/iOS, Spring Boot, Django/FastAPI, Android/Jetpack Compose, NestJS, and now Angular.

The full rules pack (all frameworks, team license, setup sprint) is at oliviacraft.lat