Browser SDK
@userflux/browser-js
UserFlux's Browser JavaScript SDK - send your frontend analytics data to the UserFlux platform.
Getting Started
1. Install the package
2. Initialise the SDK
The initialize
method takes two arguments:
writeKey
- Your UserFlux write key. You can find this in the UserFlux dashboard underManagement > Account Settings > Developers > Write Key
options
- An object containing the following optional properties:autoCapture
- An array of strings used to define which events to automatically capture. Defaults to none. The following events are available:page_views
- Capture page viewspage_leaves
- Capture page leavesclicks
- Capture clicksall
- Capture all of the above events
allowCookies
- A boolean indicating whether or not to allow cookies. Defaults totrue
cookieSameSiteSetting
- A string indicating what cookie same site setting to use. Defaults toStrict
. Options available are:Strict
,Lax
cookieExpiryDays
- A number indicating how many days a cookie should last. Defaults to365
autoEnrich
- A boolean indicating whether or not to automatically enrich events with location and device properties. Defaults totrue
defaultTrackingProperties
- An object containing any default properties to be sent with every event. Defaults to an empty objecttrackSession
- A boolean indicating whether or not to track sessions with an unique identifier. Defaults totrue
customQueryParamsToCollect
- An array of strings used to define which custom query parameters to auto collect and include in event properties. Defaults to none.disableUserIdStorage
- A boolean indicating whether or not to store the provided user id in storage. Defaults tofalse
blockCommonBots
- A boolean indicating whether or not to block common bots from being tracked. Defaults totrue
3. Tracking events
The track
method takes a single argument:
parameters
- An object containing the following properties:event
- (required) A string representing the name of the eventproperties
- (optional) An object containing any properties to be sent with the event. Defaults to an empty object. AnydefaultTrackingProperties
provided in the global options will be merged with these propertiesuserId
- (optional) A string representing the user ID of the user you're identifying with attributesexternalId
- (optional) A string representing the external ID of the user you're identifying with attributesenrichDeviceData
- (optional) A boolean indicating whether or not to enrich the event with device data. Defaults to the value ofautoEnrich
in the global optionsenrichLocationData
- (optional) A boolean indicating whether or not to enrich the event with location data. Defaults to the value ofautoEnrich
in the global optionsenrichPageProperties
- (optional) A boolean indicating whether or not to enrich the event with page properties. Defaults totrue
enrichReferrerProperties
- (optional) A boolean indicating whether or not to enrich the event with referrer properties. Defaults totrue
enrichUTMProperties
- (optional) A boolean indicating whether or not to enrich the event with UTM properties. Defaults totrue
enrichPaidAdProperties
- (optional) A boolean indicating whether or not to enrich the event with paid advertisement properties (such as google and facebook ads). Defaults totrue
addToQueue
- (optional) A boolean indicating whether or not to add the event to the queue. Defaults tofalse
. Iffalse
, the event will be sent immediately
4. Identifying users
The identify
method takes a single argument:
parameters
- An object containing the following properties:properties
- (required) An object containing any attributes to be associated with the users profileuserId
- (optional) A string representing the user ID of the user you're identifying with attributesexternalId
- (optional) A string representing the external ID of the user you're identifying with attributesenrichDeviceData
- (optional) A boolean indicating whether or not to enrich the event with device data. Defaults to the value ofautoEnrich
in the global optionsenrichLocationData
- (optional) A boolean indicating whether or not to enrich the event with location data. Defaults to the value ofautoEnrich
in the global options
Other Methods Available
trackBatch
The trackBatch
method takes a single argument:
events
- An array of objects. See thetrack
method for details of the properties available for each object.
updateDefaultTrackingProperties
If at any time you wish to update the default tracking properties, you can do so by calling the updateDefaultTrackingProperties
method.
The updateDefaultTrackingProperties
method takes one argument:
defaultTrackingProperties
- An object containing any default properties to be sent with every event.
reset
If at any time you wish to reset the SDK, you can do so by calling the reset
method. This will flush any events, clear any cookies / local storage, and reset the SDK to its initial state.
flush
This will flush any pending events and send them to the UserFlux platform.
trackPageView
If you have disabled autoCapture
in the global options, you can manually capture page views by calling the trackPageView
method.
getUserId
If you have provided a userId
in the identify
or track
methods, you can retrieve this by calling the getUserId
method.
getAnonymousId
You can retrieve the anonymous id by calling the getAnonymousId
method. This is the id that will be used if no userId
is provided in the identify
or track
methods.
Alternative Installation
If you do not want to use the NPM package manger, simply drop the following into your HTML
Last updated