React
How to add Dub Analytics to your React or Next.js site
With Dub Analytics, you can track leads and sales conversions on your website, enabling you to measure the effectiveness of your marketing campaigns.
Quickstart
This quick start guide will show you how to get started with Dub Analytics on your website.
Install package
Using the package manager of your choice, add the @dub/analytics
to your project.
Initialize package in your code
If you are using a React framework, you can use the <Analytics />
component to track conversions on your website.
E.g. if you’re using Next.js, you can add the <Analytics />
component to your root layout component or any other pages where you want to track conversions.
Concepts
You can pass the following props to the <Analytics />
component to customize the tracking script:
The base URL for the Dub API. This is useful for setting up reverse proxies to avoid adblockers.
The publishable API key to use for client-side click tracking. Get your publishable API key from your Dub workspace’s token settings page.
The attribution model to use for the analytics event. The following attribution models are available:
first-click
: The first click model gives all the credit to the first touchpoint in the customer journey.last-click
: The last click model gives all the credit to the last touchpoint in the customer journey.
The query parameter to listen to for client-side click-tracking (e.g.
?via=abc123
).
Custom properties to pass to the script tag. Refer to MDN for all available options.
Examples
We also have some advanced examples on GitHub:
Was this page helpful?