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 ```
The commands generate an HTML report and opens in the system default browser:
shell
cd <path-to-project>
birdview inspect . --all --open
You can also use GitHub repository URLs:
shell
birdview inspect https://github.com/<account>/<repository> --all --open
In addition, you should get the console output similar to the one below:
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 (standalone: 0)
├── 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 <dir> --all --format=<html|json>
You can generate reports using multiple templates:
html
: single-page HTML report (default)json
: raw JSON reportBy default, the reports are placed in the working directory.
You can change the report output folder using the -o
or --output-dir
parameter.
shell
birdview inspect . --all --output-dir=reports --open
The output directory should exist prior to running the command
The HTML format is the default one.
```shell
birdview inspect
birdview inspect
birdview inspect
Provides insights on the Angular elements.
*.module.ts
)*.component.ts
)*.directive.ts
)*.service.ts
)*.pipe.ts
)*.dialog.ts
)Overall statistics:
Standalone component detection:
Provides insights on the Unit and End-to-End testing.
*.spec.ts
)*.e2e.ts
, *.test.ts
)Provides insights on the packages and project dependencies.
package.json
files within the workspaceProvides insights on the file types used in the project
```shell
birdview inspect
birdview inspect
The format of the output is similar to the following example:
```json
{
"report_date": "
"project": {
"name": "
"modules": [
"packages",
"angular-tests",
"angular-entities",
"file-types"
],
"git": {
"remote": "<URL>",
"branch": "<branch>",
"target": "<SHA>"
}
},
"warnings": [
{
"module": "
"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,
"component_standalone": 23,
"directive": 58,
"service": 181,
"pipe": 23,
"dialog": 8
},
"types": {
"html": 379,
"scss": 536,
"css": 33,
"ts": 5125,
"js": 301,
"md": 497,
"json": 548
}
},
"angular": {
"framework": "
"unit_tests": [
{
"path": "
"e2e_tests": [
{
"path": "
"packages": [
{
"path": "