generate module in angular code example

Example 1: generate module with routing in angular

ng g m [ModuleName] --routing

Example 2: angular cli generate new module

ng generate module module-name

Example 3: ng new module w route

// Use this command to create a  lazy-loaded feature module with routing, along with its stub component.

ng generate module  --route  --module app.module

Example 4: angular cli skip-tests

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

Example 5: 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 6: angular cli create component

plainsight/some-name/some-name.component.ts

Tags:

Misc Example