analytics

Solid

Google Analytics 4, tag management, and event tracking.

AI & Automation 814 stars 53 forks Updated today MIT

Install

View on GitHub

Quality Score: 93/100

Stars 20%
97
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
36
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Analytics Skill Expert assistance for web analytics implementation. ## Capabilities - Configure Google Analytics 4 - Implement event tracking - Set up tag management - Create custom events - Handle privacy compliance ## GA4 Implementation ```typescript // gtag.js declare global { interface Window { gtag: (...args: any[]) => void; } } export function trackEvent(action: string, category: string, label?: string) { window.gtag('event', action, { event_category: category, event_label: label, }); } export function trackPageView(url: string) { window.gtag('config', GA_ID, { page_path: url, }); } ``` ## Target Processes - analytics-setup - event-tracking - conversion-tracking

Details

Author
a5c-ai
Repository
a5c-ai/babysitter
Created
4 months ago
Last Updated
today
Language
JavaScript
License
MIT

Related Skills