Quick start guide
Getting started with sending events using the JavaScript tracker is very similar to other web analytics vendors like Google Analytics, Adobe Analytics, etc.
The process involves the following high level steps:
- Download the latest version of the Snowplow JavaScript tracker file,
sp.js
, which can be found here. - If you are already hosting static files somewhere on your own domain, it should just be a matter of downloading and adding the
sp.js
file. Otherwise you can follow our guides for self hosting, use another method of your choice, or leverage a Third Party CDN (useful for evaluation or testing). - Once you have a JS tracker available, you can add the tag snippet to your site. There are also alternative options described below for adding the tracker to your website.
;(function(p,l,o,w,i,n,g){if(!p[i]){p.GlobalSnowplowNamespace=p.GlobalSnowplowNamespace||[]; p.GlobalSnowplowNamespace.push(i);p[i]=function(){(p[i].q=p[i].q||[]).push(arguments) };p[i].q=p[i].q||[];n=l.createElement(o);g=l.getElementsByTagName(o)[0];n.async=1; n.src=w;g.parentNode.insertBefore(n,g)}}(window,document,"script","{{URL to sp.js}}","snowplow"));
Once you’ve generated your tag add it to all the pages you’d like to track:
- Place the tag directly into your codebase. Typically this will be placed into the
<head>
element of your page or in a similar, suitable, location if using a Single Page Application framework.- The JavaScript Tracker supports both synchronous and asynchronous tags. We recommend the asynchronous tags in nearly all instances, as these do not slow down page load times.
- Load the tag using a Tag Management solution such as Google Tag Manager, usually triggered on page load.
- Place the tag directly into your codebase. Typically this will be placed into the
Configure an instance of the tracker by calling
newTracker
with your desired properties.
window.snowplow('newTracker', 'sp1', '{{collector_url}}', {
appId: 'my-app-id'
})
- Then you can use the track methods to send some events. You can send a Page View event to all initialised trackers with just:
window.snowplow('trackPageView');
- You can read more about the other tracking functions which are available in the JavaScript Tracker in the v3 reference and v2 reference documentation.
Alternative Options​
Rather than adding the tag snippet directly, you may wish to use an alternative option for loading the JavaScript Tracker.
Users of Google Tag Manager can use the Snowplow Analytics Custom Template.
Use the Snowplow Plugin in the analytics npm package (JavaScript Tracker v2 only, v3 support soon).