ng generate commands code example
Example 1: ng cli generate component
ng g c componentName
Example 2: ng angular
ng n [options]
Example 3: ng g
ng g directive [options]
Example 4: angular cli interface generate
ng generate interface [options]
ng g interface [options]
# The name of the interface.
# 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
Example 5: auto generate component angular
ng g component [directory-where-you-want-to-save-the-component]/[new-component-name]
ng generate component [directory-where-you-want-to-save-the-component]/[new-component-name]