Q:

angular cli create component

ng g component componentname
8
ng generate component [component-name]
5
ng g c componentName
2
ng generate class hero --type=model
0
ng generate component [name]
-1
ng generate <schematic> [options]
3
The name of the TypeScript configuration file for tests. Default: ... --skipTests=true|false. When true, does not create "spec.ts" test files for the app. Default: false

While generating component using cmd
>ng g c component-name --skipTests
-1
      ng generate component hero-detail
-1
plainsight/some-name/some-name.component.ts
-1
ng generate interface <name> <type> [options]
ng g interface <name> <type> [options]

# <name>	The name of the interface.
# <type>	Adds a developer-defined type to the filename, in the format "name.type.ts".
# [options]
#	--lintFix=true|false	When true, applies lint fixes after generating the interface (Default: false)
#	--prefix=prefix			A prefix to apply to generated selectors
#	--project=project		The name of the project.

# e.g.
# ng generate interface Itest sometype		generates file name		itest.sometype.ts
-1

New to Communities?

Join the community