BirdView

Command-line utilities to gather statistics for the Angular projects.

Installing

Install Rust and Cargo
https://doc.rust-lang.org/cargo/getting-started/installation.html

```shell

with Cargo

cargo install birdview

and then

birdview --help ```

Basic Usage

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

Code Inspection

shell birdview inspect --help

Examples:

```shell

generic inspection

birdview inspect

inspect tests

birdview inspect --tests

inspect packages

birdview inspect --packages

inspect tests and packages

birdview inspect --tests --packages

run all available inspections

birdview inspect --all

run all available inspections with detailed output

birdview inspect --all --verbose ```

Generating Reports

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": "/name", "projectversion": "/version",

"totalpackagefiles": 8, "totalpackagedeps": 35, "totalpackagedevdeps": 67, "totalunittestfiles": 109, "totalunittest_cases": 906,

"unittests": [ { "path": "/.spec.ts", "cases": [ "case name 1", "case name 2" ] } ], "e2etests": [ { "path": "/.e2e.ts", "cases": [ "case name 1", "case name 2" ] } ], "packages": [ { "path": "//package.json", "dependencies": [ { "name": "tslib", "version": "^2.0.0", "dev": false }, { "name": "typescript", "version": "4.7.4", "dev": true } ] } ] } ```