mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-20 05:24:57 +08:00
30 lines
960 B
Markdown
30 lines
960 B
Markdown
<!-- Links in /docs/documentation should NOT have `.md` at the end, because they end up in our wiki at release. -->
|
|
|
|
# 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` (`-d`) run through without making any changes
|
|
|
|
`--skip-install` (`-si`) skip installing packages
|
|
|
|
`--skip-git` (`-sg`) skip initializing a git repository
|
|
|
|
`--directory` (`-dir`) the directory name to create the app in
|
|
|
|
`--source-dir` (`-sd`) the name of the source directory
|
|
|
|
`--style` the style file default extension
|
|
|
|
`--prefix` (`p`) the prefix to use for all component selectors
|
|
|
|
`--routing` flag to indicate whether to generate a routing module
|
|
|
|
`--inline-style` (`is`) flag to indicate if the app component should have an inline style
|
|
|
|
`--inline-template` (`it`) flag to indicate if the app component should have an inline template
|