atic-frontend-app

(★ 16)

No description available.

atic-frontend-app Latest Version Download

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

ng build

View Details ▼

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

View Details ▼

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

View Details ▼

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

View Details ▼

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

View Details ▼

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:

// repository documentation