Command-line utilities to gather statistics for the Angular projects.
Install Rust and Cargo
https://doc.rust-lang.org/cargo/getting-started/installation.html
```shell
cargo install birdview
birdview --help ```
shell
cd <path-to-project>
birdview inspect . --all
Gives an output similar to the following:
text
package.json files: 8 (35 deps, 67 dev deps)
unit test files (.spec.ts): 109 (906 cases))
e2e test files (.test.ts, .e2e.ts): 74 (768 cases))
Saved report to: .tmp/output.json
Inspection complete
shell
birdview inspect --help
```shell
birdview inspect
birdview inspect --tests
birdview inspect --packages
birdview inspect --tests --packages
birdview inspect --all
birdview inspect --all --verbose
For additional processing or visualisation, you can generate full reports in the JSON
format by using --output
flag:
shell
birdview inspect <project> --all --output output.json
The format of the output is similar to the following example:
```json
{
"projectname": "
"totalpackagefiles": 8, "totalpackagedeps": 35, "totalpackagedevdeps": 67, "totalunittestfiles": 109, "totalunittest_cases": 906,
"unittests": [
{
"path": "