https://github.com/angularconsulting/ngvm
NGVM is a tool that simplifies the process of managing your Angular projects and Angular CLI versions
https://github.com/angularconsulting/ngvm
angular angular-cli developer-tools npm productivity-tools
Last synced: 3 months ago
JSON representation
NGVM is a tool that simplifies the process of managing your Angular projects and Angular CLI versions
- Host: GitHub
- URL: https://github.com/angularconsulting/ngvm
- Owner: angularconsulting
- License: mit
- Created: 2021-09-19T11:20:05.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-02-18T05:53:34.000Z (almost 3 years ago)
- Last Synced: 2025-09-29T19:52:01.942Z (4 months ago)
- Topics: angular, angular-cli, developer-tools, npm, productivity-tools
- Language: TypeScript
- Homepage: https://angularconsulting.au/products/open-source/ngvm-angular-cli-version-manager
- Size: 143 KB
- Stars: 38
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
### Angular CLI Version Manager
Forget about typing all these long npm commands that you used to maintain Angular CLI versions. Use ngvm instead!
### Install:
```
npm install ngvm -g
ngvm help
```
### Options:
| command | description |
|--------------------| --------------------------------------------------------------------------------------------------------------------------------------------------- |
| install | i | Install a specific version of Angular CLI. By default it will install the latest version |
| uninstall | u | Uninstall the global or local Angular CLI |
| new | n | Create a new Angular application. You can use the global Angular CLI or NPX. You can specify any existing Angular CLI version |
| latest | Print out the latest Angular CLI version available on NPM |
| global | Print out the global Angular CLI version |
| local | Print out the local Angular CLI version |
| versions | vs | Print out the global, local and latest Angular CLI versions |
| inspect | Print out Angular CLI, Angular, NodeJS, TypeScript, RxJS versions and more info about current working directory |
| list | ls | List of all Angular CLI releases available on NPM |
| show | Check information about a particular Angular CLI version released on NPM. By default, the latest version is shown |
| pkgmgr | pm | Print out or set local or global Angular CLI default package manager |
| compat | Navigate to the Angular CLI, Angular, NodeJs, TypeScript, RxJS compatibility list |
| diff | Compare the difference between Angular CLI versions. You can specify any existing versions. By default local version will be diffed with the latest |
| consulting | Everything about Angular. High level of expertise, engineering and training |
### Examples:
```
$ ngvm new my-app --routing --style=scss -npx
$ ngvm new my-app --routing --style=scss -ng 15.0.0
$ ngvm show 15.0.0
$ ngvm pm yarn
$ ngvm diff 14.0.0 15.0.0
$ ngvm install -g
```
created by [angularconsulting.au](https://angularconsulting.au)