Skip to content

Latest commit

 

History

History
120 lines (115 loc) · 2.37 KB

new.md

File metadata and controls

120 lines (115 loc) · 2.37 KB

Documentation below is for CLI version 6. For version 7 see here.

ng new

Overview

ng new [name] creates a new angular application.

Default applications are created in a directory of the same name, with an initialized Angular application.

Options

dry-run

--dry-run (alias: -d)

Run through without making any changes.

force

--force (alias: -f)

Forces overwriting of files.

verbose

--verbose (alias: -v)

Adds more details to output logging.

collection

--collection (alias: -c)

Schematics collection to use.

inline-style

--inline-style (alias: -s)

Specifies if the style will be in the ts file.

inline-template

--inline-template (alias: -t)

Specifies if the template will be in the ts file.

view-encapsulation

--view-encapsulation

Specifies the view encapsulation strategy.

routing

--routing

Generates a routing module.

prefix

--prefix (alias: -p)

The prefix to apply to generated selectors.

style

--style

The file extension to be used for style files.

skip-tests

--skip-tests (alias: -S)

Skip creating spec files.

skip-package-json

--skip-package-json

Do not add dependencies to package.json.