Drift Angular
Search
K

Create a Page

Create New Page Component
To add new page in your app, You have to create a new Page Component.
To create a Angular component run the following command in the command prompt on Windows PC or terminal on Mac.
$ ng generate component {component path}
// or you can use the shorter cammand given below
$ ng g c {component path}
Above cammand will create a component on given path. It will create four files.
For example we create a component 'home' then following files will be generated:
  1. 1.
    home.component.html
  2. 2.
    home.component.scss
  3. 3.
    home.component.spec.ts
  4. 4.
    home.component.ts
We can skip spec file add 3. home.component.spec.ts file using --skipTests=true
$ ng generate component --skipTests=true home
For more angular command click here.