Using Anular CLI, how do you create a new component that will be automatically imported to your main app module?
Experience Level: Junior
Tags: AngularAngular CLI
Answer
A component can be created by running the following command from the command line:
ng generate component name-of-your-component
By executing the above commnd you are telling Angular CLI to create a component name-of-your-component and to include it in the application module app (as the parameter --module wasn't provided, the default value 'app' will be used).
- The component will be created in its own folder src/app/name-of-your-component
- The module file src/app/app.module.ts will be modified as the component will be imported into it
Related Angular CLI job interview questions
How do you build your Angular application using Angular CLI for use on a local or development environment?
AngularAngular CLI JuniorUsing Anular CLI, how do you create a new component that will be automatically imported to your feature module that is called feature-module1?
AngularAngular CLI JuniorUsing Anular CLI, how do you create a new feature module that will be automatically imported to your main app module?
AngularAngular CLI JuniorHow do you create new application using Angular CLI?
AngularAngular CLI JuniorWhat do you need to do in order to be able to run Angular CLI on your computer?
AngularAngular CLI Junior