Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Angular 14: Error: A collection and schematic is required during execution

I am trying to learn angular. I installed the lastest version and created an app called test using ng new test command.

Then I opened the app in visual studio code. In the terminal I entered the following command to create a new component: ng g form1

I get the following error:

Error: A collection and schematic is required during execution.

Please see the screenshot. Please help. Thanks.

screenshot of error

like image 286
Nazir Avatar asked Jan 24 '26 08:01

Nazir


1 Answers

https://angular.io/cli/generate

A schematic is the type of object you want to create, such as a service, pipe, directive, or component.

In this instance, you're providing the name of what you want to generate ('form1') but not what kind of object.

You could run ng g c form1 to generate a form1.component, or ng g s form1 to generate a form1.service.

like image 127
Tanner Avatar answered Jan 26 '26 23:01

Tanner