Skip to content

Commit 5411cab

Browse files
committed
docs: Update README.md with additional Angular CLI installation options and clarify standalone component behavior
1 parent badcfc1 commit 5411cab

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

README.md

+22-1
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,12 @@ Install the Angular CLI globally:
243243
npm install -g @angular/cli
244244
```
245245

246+
If you want to install a specific version of the Angular CLI, you can use the following command:
247+
248+
```bash
249+
npm install -g @angular/cli@version-number
250+
```
251+
246252
If you have already installed the Angular CLI, you can update it to the latest version using the following command:
247253

248254
```bash
@@ -263,9 +269,24 @@ ng new [PROJECT NAME]
263269

264270
# without standalone component
265271
ng new [PROJECT NAME] --standalone=false
272+
273+
## without routing
274+
ng new [PROJECT NAME] --routing=false
275+
276+
## without testing
277+
ng new [PROJECT NAME] --skip-tests=true
278+
279+
## without dependencies
280+
ng new [PROJECT NAME] --skip-install=true
281+
282+
## without git
283+
ng new [PROJECT NAME] --skip-git=true
284+
285+
## with experimental zonless
286+
ng new [PROJECT NAME] --experimental-zoneless
266287
```
267288

268-
**Note**: In version v17 and later, the standalone component is default enabled. In version v16 and earlier, the standalone component is disabled by default. You can enable or disable the standalone component using the `--standalone` flag. (In this repository, an example repository is created with the latest version of Angular.)
289+
**Note**: In version v16 and earlier, there is no standalone component. In version v17 and later, the standalone component is default enabled. You can enable or disable the standalone component using the `--standalone` flag while creating a new project (In this repository, an example repository is created with the latest version of Angular).
269290

270291
Navigate to the project directory:
271292

0 commit comments

Comments
 (0)