- Angular 6 - CLI
- Angular 6 - Materials
- Angular 6 - Animations
- Angular 6 - Forms
- Angular 6 - Http Client
- Angular 6 - Http Service
- Angular 6 - Services
- Angular 6 - Routing
- Angular 6 - Pipes
- Angular 6 - Directives
- Angular 6 - Templates
- Angular 6 - Event Binding
- Angular 6 - Data Binding
- Angular 6 - Module
- Angular 6 - Components
- Angular 6 - Project Setup
- Angular 6 - Environment Setup
- Angular 6 - Overview
- Angular 6 - Home
Angular 6 Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Angular 6 - CLI
Angular CLI makes it easy to start with any Angular project. Angular CLI comes with commands that help us create and start on our project very fast. Let us now go through the commands available to create a project, a component and services, change the port, etc.
To work with Angular CLI, we need to have it installed on our system. Let us use the following command for the same −
npm install -g @angular/cp
To create a new project, we can run the following command in the command pne and the project will be created.
ng new PROJECT-NAME cd PROJECT-NAME ng serve //
ng serve // will compile and you can see the output of your project in the browser −
http://localhost:4200/
4200 is the default port used when a new project is created. You can change the port with the following command −
ng serve --host 0.0.0.0 --port 4201
The following table psts down a few important commands required while working with Angular 4 projects.
Component | ng g component new-component |
Directive | ng g directive new-directive |
Pipe | ng g pipe new-pipe |
Service | ng g service new-service |
Module | ng g module my-module |
Whenever a new module, a component, or a service is created, the reference of the same is updated in the parent module app.module.ts.
Advertisements