Files
cheatsheet-tldr/tldr/ng-new
2026-02-05 00:27:50 +00:00

38 lines
871 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# ng new
> Create and initialize a new Angular application.
> More information: <https://angular.dev/cli/new>.
- Create a new Angular application:
`ng {{[n|new]}} {{app_name}}`
- Preview the actions without creating files:
`ng {{[n|new]}} {{app_name}} {{[-d|--dry-run]}}`
- Skip generating unit test (`spec.ts`) files:
`ng {{[n|new]}} {{app_name}} {{[-S|--skip-tests]}}`
- Skip automatic package installation:
`ng {{[n|new]}} {{app_name}} --skip-install`
- Skip Git repository initialization:
`ng {{[n|new]}} {{app_name}} {{[-g|--skip-git]}}`
- Configure AI tooling for the project:
`ng {{[n|new]}} {{app_name}} --ai-config {{claude|copilot|cursor|gemini|jetbrains|none|windsurf}}`
- Disable interactive prompts:
`ng {{[n|new]}} {{app_name}} --interactive false`