Ash Ramirez 434a3740f0 refactor(@angular/cli): update aio links -> adev links
Updates for all angular.io links to the new angular.dev domain. Additionally, adjustment to new resources where the equivalent does not exist on the new site (e.g. Tour of Heroes tutorial)
2024-06-06 11:12:06 +02:00

32 lines
515 B
Markdown

# `@angular/create`
## Create an Angular CLI workspace
Scaffold an Angular CLI workspace without needing to install the Angular CLI globally. All of the [ng new](https://angular.dev/cli/new) options and features are supported.
## Usage
### npm
```
npm init @angular@latest [project-name] -- [...options]
```
### yarn
```
yarn create @angular [project-name] [...options]
```
### pnpm
```
pnpm create @angular [project-name] [...options]
```
### bun
```
bun create @angular [project-name] [...options]
```