A comprehensive Angular performance analyzer that identifies performance bottlenecks, memory leaks, and optimization opportunities in Angular applications.
- Smart OnPush Detection - Recommends OnPush for components that would actually benefit from it.
- Memory Leak Detection - Identifies subscription issues and memory leaks, with smart support for RxJS pipe operators and manual properties.
- Template Optimization - Finds missing trackBy functions, template performance issues, and functions called within template interpolation (excluding Signals).
- Performance Scoring - Gives each component a performance score out of 100.
- Detailed Reports - Generates comprehensive markdown and interactive HTML reports with actionable recommendations.
- Browser Report Viewer - Automatically opens audit reports in the default browser to view results in a premium, interactive dashboard.
- Targeted Analysis - Focuses on components with actual complexity.
npm install -g ngperf-auditAfter global installation, you can use the ngperf-audit command anywhere.
# As dev dependency
npm install --save-dev ngperf-auditNote: When installed locally in a project, use one of these methods:
Option 1: Use npx (recommended)
npx ngperf-audit project ./src/appOption 2: Add to package.json scripts
{
"scripts": {
"perf-check": "ngperf-audit project ./src/app --open",
"perf-report": "ngperf-audit report ./src/app --open"
}
}Then run: npm run perf-check
Option 3: Use full path
./node_modules/.bin/ngperf-audit help# Global installation - use directly
ngperf-audit project ./src/app --open
# Local installation - use with npx
npx ngperf-audit project ./src/app --open
# Or use npm scripts (see Installation section)
npm run perf-check# Analyze entire Angular project
ngperf-audit project ./src/app
# Analyze and open interactive HTML report in browser
ngperf-audit project ./src/app --open
# Save HTML report to a custom path and open
ngperf-audit project ./src/app -f html -o ./reports/perf-report.html --open
# Analyze specific component
ngperf-audit component ./src/app/my-component/my-component.ts
# Generate detailed report
ngperf-audit report ./src/app
# Get help
ngperf-audit helpimport { PerformanceAnalyzerCLI, PerformanceAnalyzer } from 'ngperf-audit';
// Quick analysis with summary
const { analyses, summary } = PerformanceAnalyzerCLI.analyzeProjectWithSummary('./src/app');
console.log(`Found ${summary.totalComponents} components`);
console.log(`Average score: ${summary.averagePerformanceScore}/100`);
// Generate markdown report
const report = PerformanceAnalyzerCLI.generateReportWithSummary(analyses, summary);
await PerformanceAnalyzerCLI.saveReportToFile(report, './performance-report.md');
// Generate HTML report
const htmlReport = PerformanceAnalyzerCLI.generateHtmlReport(analyses, summary);
await PerformanceAnalyzerCLI.saveReportToFile(htmlReport, './performance-report.html');Analyzes all Angular components in the specified directory and generates a comprehensive report.
Options:
-o, --output <file>: Output file path for the report (default:./performance-report.mdor./performance-report.html)-f, --format <type>: Report format -markdown,html, orjson(default:markdown)--open: Open the HTML report automatically in your default browser
Examples:
ngperf-audit project ./src/app
ngperf-audit project ./src/app -o ./reports/perf-analysis.md
ngperf-audit project ./src/app -f html --open
ngperf-audit project ./src/app -o ./reports/analysis.json -f jsonAnalyzes a single Angular component file.
Example:
ngperf-audit component ./src/app/user-profile/user-profile.component.tsGenerates a detailed performance report for the specified directory.
Options:
-o, --output <file>: Output file path--open: Open the generated report automatically in the browser (generates HTML if markdown is selected)
Shows help information and available commands.
Unlike other tools that blindly recommend OnPush for every component, ngperf intelligently determines which components would actually benefit:
-
Recommends OnPush for components with:
- Service injections (HttpClient, APIs, etc.)
- Lifecycle hooks (ngOnInit, ngOnChanges)
- Observable subscriptions
- Form handling (FormBuilder, FormGroup)
- Complex methods and computed properties
- Event handlers
- Template complexity (ngFor, ngIf, event bindings)
-
Skips simple "dummy" components that:
- Only display static content
- Have minimal logic
- Don't use services or observables
- Have simple templates
- Manual subscriptions without proper cleanup
- Recognizes RxJS pipe cleanup operators (
takeUntil,takeUntilDestroyed,take,first) - Recognizes manual subscription assignments and collections (
this.sub = ...,this.subs.add(...)) - Multiple subscriptions that could be optimized
- Missing trackBy functions in ngFor loops or track expressions in
@forcontrol flow - Function calls in templates (fully ignores Angular Signals, preventing false positives)
- Opportunities for async pipes
- Large lists that need virtual scrolling
Each component gets a score from 0-100 based on:
- Change detection strategy appropriateness
- Template optimization
- Subscription management
- Overall complexity vs. optimization
Add performance checks to your build process:
{
"scripts": {
"perf-check": "ngperf-audit project ./src/app --format json",
"perf-report": "ngperf-audit project ./src/app"
}
}- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
ngperf-audit is free for everyone with attribution requirements
- Personal projects
- Open source projects
- Commercial applications
- Enterprise use
- SaaS products
- Consulting work
Just give credit where it's due! Include attribution in one of these ways:
In your app's About/Credits section:
Performance analysis powered by ngperf-audit
Created by eawebmaster20 (https://eaweb-solutions.com)
In your project's README:
## Performance Analysis
This project uses [ngperf-audit](https://github.com/eawebmaster20/ngperf)
for Angular performance analysis.In CLI output:
Powered by ngperf-audit (https://github.com/eawebmaster20/ngperf)
- Star the GitHub repository
- Mention @eawebmaster20 on social media
- Write a blog post about your experience
- Contribute improvements
Full license details: MIT with Attribution
-
Community Support: GitHub Issues
-
Documentation: GitHub Wiki
-
Report bugs: GitHub Issues
-
Request features: GitHub Issues
-
Documentation: GitHub Readme
Made for the Angular community