Install Angular CLI
If you don't have Angular CLI you will need to install it using npm
Usage
ng g c products/product-detail.component --flat
ng = Angular CLI
g = generate
c = component
--flat = no folder will be created
This will create 4 files:
src\app\products\product-detail\product-detail.component.css
src\app\products\product-detail\product-detail.component.html
src\app\products\product-detail\product-detail.component.spec.ts
src\app\products\product-detail\product-detail.component.ts
It will update the file which will register the component in the app.module.ts:
src\app\app.module.ts
It will also wire the components together putting some useful code in
src\app\products\product-detail\product-detail.component.ts