angular-development

Solid

Angular development patterns including modules, components, services, dependency injection, signals, and enterprise architecture.

Web & Frontend 814 stars 53 forks Updated today MIT

Install

View on GitHub

Quality Score: 95/100

Stars 20%
97
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Angular Development Skill Expert assistance for building enterprise Angular applications with modern patterns and best practices. ## Capabilities - Create Angular components with standalone API - Implement services with dependency injection - Configure routing with lazy loading - Build reactive forms and template-driven forms - Use Angular signals for reactivity - Set up enterprise architecture patterns ## Usage Invoke this skill when you need to: - Build Angular applications - Create modular architecture - Implement forms and validation - Set up Angular routing - Configure dependency injection ## Inputs | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | componentName | string | Yes | Component name | | standalone | boolean | No | Use standalone components (default: true) | | features | array | No | routing, forms, http, signals | | style | string | No | css, scss, less | ### Configuration Example ```json { "componentName": "UserProfile", "standalone": true, "features": ["signals", "forms"], "style": "scss" } ``` ## Component Patterns ### Standalone Component with Signals ```typescript // components/user-profile.component.ts import { Component, signal, computed, input, output } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; interface User { id: string; name: string; email: string; } @Component({ selector: 'app-user-profile', standal...

Details

Author
a5c-ai
Repository
a5c-ai/babysitter
Created
4 months ago
Last Updated
today
Language
JavaScript
License
MIT

Integrates with

Related Skills