Angular framework with standalone components, signals, the new control flow syntax, and the ng CLI. Use when working with Angular, ng generate, signals, inject(), or standalone components in .ts files.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Angular framework with standalone components, signals, the new control flow syntax, and the ng CLI. Use when working with Angular, ng generate, signals, inject(), or standalone components in .ts files.
Angular
Setup
ng new my-app --standalone (standalone components, no NgModules)
ng generate component my-comp - create component
ng generate service my-service - create service
ng serve - dev server on port 4200
ng build - production build
Code Style
Standalone components: standalone: true
inject() for dependency injection (not constructor)
Signals over RxJS for state: signal(), computed(), effect()