AngularCLI
Angular CLI A command-line interface for Angular The Angular CLI helps to quickly create an Angular application with all the configuration files and packages in one single command. The Angular CLI creates the Angular Application and uses Typescript, Webpack ( for Module bundling), Karma ( for unit testing), Protractor ( for an end to end testing). Installing Angular CLI: npm install -g @angular/cli@latest Angular CLI Version Check: ng --version Creating a new Angular Application: ng new MyApp The Angular CLI does the following 1. Creates a new directory MyAppis created 2. Sets up the folder structure for the application 3. Downloads and installs Angular libraries and any other dependencies 4. Installs and configures TypeScript. 5. Installs and configures Karma & Protractor for testing 6. Initializes the Git. Running new Angular Project ng serve npm start The command compiles the Angular application and invokes the Webpack development server. The server keeps...