How to See Who Is Using My Bolt App
Add PostHog (free, 1M events/month) to your Bolt app for product analytics, or use your hosting platform analytics — Netlify Analytics, Vercel Analytics, or Cloudflare Web Analytics. If your Bolt app uses Bolt V2 native auth, check the user management dashboard to see registered users.
Why this matters
Bolt makes it easy to build and deploy fast, but without analytics you are building blind. You do not know which features people use, where they drop off, or whether your latest change helped or hurt. Analytics is the feedback loop that makes fast iteration productive instead of random.
What's at stake
Bolt tokens are precious — every change costs tokens. Without analytics, you might spend tokens adding features nobody wants while the real problem is a confusing signup flow. Analytics tells you where to spend your tokens for maximum impact.
Step by step.
Add PostHog to your Bolt app
Ask Bolt to add PostHog analytics to your app. Provide your PostHog project API key (from your free PostHog account). PostHog auto-captures page views and clicks, giving you immediate visibility into user behavior.
import posthog from "posthog-js";
posthog.init("YOUR_POSTHOG_KEY", {
api_host: "https://us.i.posthog.com",
autocapture: true,
});Enable hosting platform analytics
If you deployed to Netlify, enable Netlify Analytics (paid add-on, server-side). If on Vercel, Vercel Analytics is included free. If on Cloudflare, enable Web Analytics (free). These provide basic metrics like page views, visitors, and geographic distribution without modifying your app code.
Check the Bolt V2 user management dashboard
If your app uses Bolt V2 native authentication, the Bolt Cloud backend includes a user management dashboard where you can see everyone who has signed up, their email verification status, and signup dates. This is built in — no extra setup needed.
Track key conversion events
Identify the 3-5 actions that matter most for your app (signup, first feature use, purchase). Ask Bolt to add PostHog event tracking for these. This tells you your conversion funnel: how many visitors sign up, how many use the core feature, and how many pay.
Set up a weekly review habit
Spend 10 minutes each week reviewing your PostHog dashboard. Look for: total active users (growing or shrinking?), most and least used pages, where users drop off, and any new error patterns. Use these insights to prioritize your next Bolt iteration.
See exactly who uses your Bolt app and optimize your token spend
- Analytics showing which features your users actually care about
- Conversion tracking so you know if your app achieves its goals
- User insights that help you prioritize your next Bolt iteration
Frequently asked questions.
Bolt V2 includes a user management dashboard if you use native authentication, which shows registered users. For broader analytics (page views, traffic sources, feature usage), you need to add PostHog or use your hosting platform analytics.
Both if possible. Hosting platform analytics (Netlify, Vercel, Cloudflare) provide server-side data about visitors. PostHog provides product analytics — what users do inside your app. Hosting analytics tells you who comes; PostHog tells you what they do.
Technically yes, but do not rely on it. The Bolt preview runs in a WebContainer and your analytics events may not represent real user behavior. Set up analytics for your deployed version and test it there.
Some hosting platforms offer analytics without code changes. Cloudflare Web Analytics and Vercel Analytics can be enabled from the hosting dashboard. For PostHog, you need to add a code snippet — ask Bolt to do it in one prompt to minimize token usage.