Using Anular CLI, how do you create a new component that will be automatically imported to your feature module that is called feature-module1?

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 --module feature-module1

By executing the above commnd you are telling Angular CLI to create a component name-of-your-component and to include it in the feature module feature-module1.

  • The component will be created in its own folder src/app/name-of-your-component
  • The module file src/app/feature-module1/feature-module1.module.ts will be modified as the component will be imported into it

Comments

No Comments Yet.
Be the first to tell us what you think.
Angular CLI for beginners
Angular CLI for beginners

Are you learning Angular CLI ? Try our test we designed to help you progress faster.

Test yourself