There was an error while loading. Please reload this page.
Analyze your application's SEO:
import { auditPage } from '@power-seo/audit'; const result = auditPage({ url: 'https://myapp.com/dashboard', title: 'Dashboard - My App', metaDescription: 'User dashboard and analytics', wordCount: 2000, focusKeyphrase: 'dashboard analytics', }); console.log(`Audit Score: ${result.score}/100`);
Merge GSC data with audit results:
import { mergeGscWithAudit } from '@power-seo/analytics'; const insights = mergeGscWithAudit({ gscPages: gscData, auditResults: auditData, }); // insight: { url, clicks, impressions, position, auditScore }
Generate SEO reports:
import { buildDashboardData } from '@power-seo/analytics'; const dashboard = buildDashboardData({ gscPages: currentRows, gscQueries: queryRows, auditResults: latestAudit, });
Perfect for SaaS applications with SEO requirements.