React web analytics installation
Install Add your PostHog API key and host to your environment variables. For Vite-based React apps, use the Wrap your app with the The Use the You can also import Click around and view a couple pages to generate some events. PostHog automatically captures pageviews, clicks, and other interactions for you. If you'd like, you can also manually capture custom events: After installing PostHog and ensuring autocapture is enabled, head to your web analytics dashboard to see your data. And then check out our getting started guide. PostHog tip: Web analytics works with anonymous events. This means if you are primarily using PostHog for web analytics, it can be significantly cheaper for you.Install the package
Requiredposthog-js and @posthog/react using your package manager:Add environment variables
RequiredVITE_PUBLIC_ prefix:Initialize PostHog
RequiredPostHogProvider component at the root of your application (such as main.tsx if you're using Vite):defaults option automatically configures PostHog with recommended settings for new projects. See SDK defaults for details.Accessing PostHog in your code
RecommendedusePostHog hook to access the PostHog instance in any component wrapped by PostHogProvider:posthog directly for non-React code or utility functions:Send events
RecommendedNext steps
Recommended