computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
581 B
8 lines
581 B
# Ng generate |
|
|
|
ng generate is used to create the component in angular project. These are the two main ways to generate a new component in Angular: using ng g c <component_name>, and using ng generate component <component_name>. Using either of these two commands, the new component can be generated pretty easily and followed by the suitable component name of your choice. |
|
|
|
Visit the following resources to learn more: |
|
|
|
- [@official@Angular CLI - ng generate](https://angular.dev/cli/generate) |
|
- [@video@Angular cli generate component](https://www.youtube.com/watch?v=NlHlu_zzmo4)
|
|
|