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
Packages
├── Files: 32
├── Dependencies: 145
└── Dev dependencies: 104
Unit Tests
├── Cases: 5635
└── Files: 452
E2E Tests
├── Cases: 928
└── Files: 168
Angular
├── Module: 149
├── Component: 415
├── Directive: 58
├── Service: 181
├── Pipe: 23
└── Dialog: 8
Project Files
├── HTML: 379
├── SCSS: 536
├── CSS: 33
├── TypeScript: 5125
├── JavaScript: 301
├── JSON: 548
└── Markdown: 497
Inspection complete
shell
birdview inspect --help
package.json
files (--packages
)--tests
)--angular
)--markdown
)```shell
birdview inspect --all
birdview inspect --tests
birdview inspect --packages
birdview inspect --tests --packages
shell
birdview inspect <project> --all --output <path>
You can generate reports using multiple templates, based on the output extension:
.html
: single-page HTML report.json
: raw JSON report```shell
birdview inspect
birdview inspect
Provides an output that is similar to the following one:
shell
birdview inspect <project> --all --output output.json
The format of the output is similar to the following example:
```json
{
"projectname": "
"stats": { "package": { "files": 32, "proddeps": 145, "devdeps": 104 },
"tests": {
"unit_test": 452,
"unit_test_case": 5635,
"e2e_test": 168,
"e2e_test_case": 928
},
"angular": {
"module": 149,
"component": 415,
"directive": 58,
"service": 181,
"pipe": 23,
"dialog": 8
},
"types": {
"html": 379,
"scss": 536,
"css": 33,
"ts": 5125,
"js": 301,
"md": 497,
"json": 548
}
},
"angular": { "components": [], "directives": [], "services": [], "pipes": [], "dialogs": [] },
"unit_tests": [
{
"path": "
"e2e_tests": [
{
"path": "
"packages": [
{
"path": "