atic-frontend-app
No description available.
atic-frontend-app 최신버젼 다운로드
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
ng build
설명 보기 ▼
ng build
Compile an Angular application or library into an output directory named `dist/`.
ng {{[b|build]}}
Build an Angular application or library:
ng {{[b|build]}} --output-path {{path/to/directory}}
Specify the output path relative to the workspace root:
ng {{[b|build]}} --aot
Enable Ahead-of-Time (AOT) compilation:
ng e2e
설명 보기 ▼
ng e2e
Build and serve an Angular application, then run end-to-end tests.
Note: Available `e2e` packages include Playwright, Cypress, Nightwatch, WebdriverIO, and Puppeteer.
ng {{[e|e2e]}}
Run end-to-end tests:
ng {{[e|e2e]}} {{[-c|--configuration]}} {{development|production|...}}
Run end-to-end tests using a specific configuration:
ng generate
설명 보기 ▼
ng generate
Generate and/or modify files based on a schematic.
ng {{[g|generate]}} ai-config
Generate AI configuration files for Angular project:
ng {{[g|generate]}} {{[s|service]}} {{service_name}}
Create a new service:
ng {{[g|generate]}} {{[app|application]}} {{app_name}}
Generate a new application within the workspace:
ng serve
설명 보기 ▼
ng serve
Build and serve the application, rebuilding on file changes.
ng {{[s|serve]}}
Start the application:
ng {{[s|serve]}} {{[-o|--open]}}
Start the application and open it in a browser:
ng {{[s|serve]}} --port 4201
Start the application on port `4201`:
ng test
설명 보기 ▼
ng test
Run unit tests in a project.
Note: Some commands might require additional packages such as Vitest.
ng {{[t|test]}}
Run unit tests:
ng {{[t|test]}} {{[-c|--configuration]}} {{development|production|...}}
Run unit tests using a specific configuration:
ng {{[t|test]}} --browsers {{firefox|webkit|chromium}}
Specify the browsers to use for test execution:
