Easy step to create and configure an Angular component using Angular CLI

Run the below command to generate angular component in the project directory

ng generate component {component-name}

or

ng g c {component-name}

The below example shows creating a component with name as blog.

generate component

The command also declares the blog component in the ng module.

2 comments

Join Discussion

This site uses Akismet to reduce spam. Learn how your comment data is processed.