Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brandonroberts/create-angular-project
Quickly scaffold an Angular application or library
https://github.com/brandonroberts/create-angular-project
Last synced: 12 days ago
JSON representation
Quickly scaffold an Angular application or library
- Host: GitHub
- URL: https://github.com/brandonroberts/create-angular-project
- Owner: brandonroberts
- License: other
- Created: 2022-06-25T21:48:19.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-06-27T11:05:24.000Z (over 2 years ago)
- Last Synced: 2024-11-24T08:53:53.879Z (30 days ago)
- Language: HTML
- Size: 128 KB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# create-angular-project
## Scaffolding Your First Angular Project
With NPM:
```bash
$ npm create angular-project@latest
```With Yarn:
```bash
$ yarn create angular-project
```With PNPM:
```bash
$ pnpm create angular-project
```Then follow the prompts!
You can also directly specify the project name and the template you want to use via additional command line options. For example, to scaffold an Angular, run:
```bash
# npm 6.x
npm create angular-project@latest my-angular-app --template angular-v14# npm 7+, extra double-dash is needed:
npm create angular-project@latest my-angular-app -- --template angular-v14# yarn
yarn create angular-project my-angular-app --template angular-v14# pnpm
pnpm create angular-project my-angular-app --template angular-v14
```Currently supported template presets include:
- `angular-v14`
- `angular-v14-standalone`You can use `.` for the project name to scaffold in the current directory.
## Credits
This project is inspired by `create-vite`.