Feature |
Latest Browser SDK |
Maintenance Browser SDK |
---|---|---|
Package |
||
Web Attribution |
By default, the Browser SDK includes the |
Configuration required. Use Maintenance Web Attribution. |
Amplitude Browser SDK 2.0 (@amplitude/analytics-browser
) features Autocapture, improved marketing attribution tracking, a simplified interface, and a lighter-weight package.
Browser SDK 2.0 is compatible with Amplitude Session Replay.
Ampli v2 is compatible with both Browser SDK 2.0 and Browser SDK 1.0. Follow this migration guide to upgrade.
@amplitude/analytics-browser@1
: Browser SDK 1.0@amplitude/analytics-browser@2
: Browser SDK 2.01{2 "dependencies": {- "@amplitude/analytics-browser": "^1" + "@amplitude/analytics-browser": "^2" 5 }6}
Starting with Browser SDK 2.10.0, Autocapture is enabled by default. Autocapture is implicit tracking performed by Amplitude on your behalf, and includes page views, sessions, file downloads, form and element interactions, and marketing attribution.
To opt out of default tracking, set options.autocapture
to false
.
1amplitude.init(API_KEY, undefined, {2 autocapture: false,3});
Additionally, you can pick and choose which events you want tracked by Amplitude. For example, if you only want default tracking for marketing attribution and page views, you can use the code below.
1amplitude.init(API_KEY, undefined, { 2 autocapture: { 3 attribution: true, 4 pageViews: true, 5 sessions: false, 6 fileDownload: false, 7 formInteractions: false, 8 elementInteractions: false 9 },10});
Starting Browser SDK 2.0, Amplitude consolidates Browser SDK and Marketing Analytics SDK to provide a single solution for both product and marketing analytics use case.
Marketing attribution tracking excludes all subdomains of the same root domain as referrer. This means traffic from one subdomain to another (for example, analytics.amplitude.com
to experiment.amplitude.com
) are not tracked with no additional configuration.
Browser SDK 1.0, by default, allows other subdomains to be tracked as referrer. If this is behavior is desired, refer to the code below.
options.attribution.trackNewCampaigns
This option is no longer supported as it has been adopted a non configurable default behavior. Amplitude tracks any changes to campaign parameters which includes UTM, referrer and click ID parameters.
options.attribution.trackPageViews
This option no longer exists but Amplitude can be configured similarly using page view options.
1amplitude.init(API_KEY, undefined {- attribution: { - trackPageViews: true+ defaultTracking: { + pageViews: {+ trackOn: 'attribution'7 },8 }9})
Starting Browser SDK 2.0, Amplitude has simplified the options to manage the use of cookies. By default, user identity is stored on browser cookies.
1amplitude.init(API_KEY, undefined, {- disableCookies: true, + identityStorage: 'localStorage', 4});
-import { MemoryStorage } from '@amplitude/analytics-core'; 2 3amplitude.init(API_KEY, undefined, {- cookieStorageProvider: new MemoryStorage(), + identityStorage: 'none', 6});
The options to manage cookie usage are now nested under options.cookieOptions
for a more discoverable interface.
1amplitude.init(API_KEY, undefined, { - cookieExpiration: 365, - cookieSameSite: 'Lax', - cookieSecure: false, - cookieUpgrade: true, - domain: '', + cookieOptions: { + expiration: 365, + sameSite: 'Lax', + secure: false, + upgrade: true, + domain: '',13 },14});
Starting Browser SDK 2.0, Amplitude replaced enrichment of user properties relating to user agent from client-side to server-side. The enriched user properties include os_name
, os_version
, device_model
, device_manufacturer
. While the new enrichment strategy yields more accurate results, it also yields slightly different results than Browser SDK 1.0 and may impact your existing analytics charts that query these properties. To prevent this breaking change from impacting you, install @amplitude/plugin-user-agent-enrichment-browser to configure Amplitude to enrich these user properties on the client-side and yield enrichment results similar to Browser SDK 1.0. See NPM for more details.
Amplitude no longer requires the use of enums specifically TransportType
, ServerZone
and PluginType
, and accepts its literal values.
Setting transport provider on initialization
1import * as amplitude from '@amplitude/analytics-browser';2 3amplitude.init(API_KEY, USER_ID, {- transport: amplitude.Types.TransportType.Fetch, + transport: 'fetch', 6});
Setting transport provider using setTransport()
1import * as amplitude from '@amplitude/analytics-browser';2 -amplitude.setTransport(amplitude.Types.TransportProvider.Fetch); +amplitude.setTransport('fetch');
Setting server zone on initialization
1import * as amplitude from '@amplitude/analytics-browser';2 3amplitude.init(API_KEY, USER_ID, {- serverZone: amplitude.Types.ServerZone.US, + serverZone: 'US', 6});
Amplitude has made it easier to create your own plugins, requiring less properties for faster authoring.
The name field is an optional property that allows you to reference the plugin for deletion purposes. If not provided, Amplitude will assign a random name when the plugin is added. If you do not plan to delete your plugin, you can skip assigning a name.
The type field is an optional property that defines the type of plugin you are creating. Refer to execute()
function below to distinguish the two types. If not defined, the plugin defaults to an enrichment type.
The setup function is an optional method and is called when the plugin is added or on first init whichever happens later. This function accepts two parameters:
This is useful for setup operations and tasks that depend on either the Amplitude configuration or instance. Examples include assigning baseline values to variables, setting up event listeners, and many more.
For enrichment plugins, execute function is an optional method and is called on each event. This function must return a new event, otherwise, the passed event is dropped from the queue. This is useful for cases where you need to add/remove properties from events, filter events, or perform any operation for each event tracked.
For destination plugins, execute function is a required method and is called on each event. This function must return a response object with keys: event
(BaseEvent), code
(number), and message
(string). This is useful for sending events for third-party endpoints.
The teardown function is an optional method and is called when Amplitude re-initializes. This is useful for resetting unneeded persistent state created/set by setup or execute methods. Examples include removing event listeners, mutation observers, etc.
Web Attribution V2 | Web Attribution V1 |
---|---|
|
|
Thanks for your feedback!
March 12th, 2024
Need help? Contact Support
Visit Amplitude.com
Have a look at the Amplitude Blog
Learn more at Amplitude Academy
© 2024 Amplitude, Inc. All rights reserved. Amplitude is a registered trademark of Amplitude, Inc.