### Run Angular Development Server Source: https://github.com/ricardorueda/angular-tests/blob/master/README.md Starts the Angular development server for local testing. Navigates to http://localhost:4200/ and enables live reloading on source file changes. ```bash ng serve ``` -------------------------------- ### Get Angular CLI Help Source: https://github.com/ricardorueda/angular-tests/blob/master/README.md Displays help information for the Angular CLI, providing details on available commands and options. ```bash ng help ``` -------------------------------- ### Build Angular Project Source: https://github.com/ricardorueda/angular-tests/blob/master/README.md Builds the Angular project for deployment. Artifacts are stored in the dist/ directory. Use the --prod flag for a production-optimized build. ```bash ng build ng build --prod ``` -------------------------------- ### Run Angular Unit Tests Source: https://github.com/ricardorueda/angular-tests/blob/master/README.md Executes the unit tests for the Angular project using the Karma test runner. ```bash ng test ``` -------------------------------- ### Run Angular End-to-End Tests Source: https://github.com/ricardorueda/angular-tests/blob/master/README.md Executes the end-to-end tests for the Angular project using Protractor. ```bash ng e2e ``` -------------------------------- ### Generate Angular Components and Schematics Source: https://github.com/ricardorueda/angular-tests/blob/master/README.md Scaffolds new Angular components or other project elements like directives, pipes, services, classes, guards, interfaces, enums, and modules using the Angular CLI. ```bash ng generate component component-name ng generate directive|pipe|service|class|guard|interface|enum|module ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.