How do you check what version of Angular CLI you are using?

Use the ng -version command to check your current version of Angular CLI.

To check the version of Angular CLI you are using, you can use the following command in your terminal:

bash
ng --version

This command will display the version of Angular CLI installed globally on your system, along with other relevant information such as Angular version, TypeScript version, and so on.

The output will look something like this:

yaml
Angular CLI: 8.0.0
Node: 10.16.0
OS: darwin x64
Angular: 8.0.0
...

In this example, the Angular CLI version is 8.0.0.