Integrate JavaScript SDK v1.1 with your Eleventy site


This guide will help you integrate RudderStack with your Eleventy site using the JavaScript SDK. On successful integration, you can track and send real-time user events to your preferred destinations via RudderStack.

To set up the event streams on your Eleventy site, you need to perform the following steps:

  1. Integrate the JavaScript SDK with your Eleventy site and set up the tracking code
  2. Configure a destination in RudderStack
  3. Deploy your Eleventy site and verify the events

Prerequisites

This guide assumes you have installed and set up your Eleventy site. Refer to the Eleventy documentation for more information.

Integrating the JavaScript SDK with your Eleventy site

Integrating the JavaScript SDK with your Eleventy site involves the following steps:

  1. Creating a JavaScript source in RudderStack
  2. Installing and configuring the JavaScript SDK in your Eleventy site

Creating a JavaScript source in RudderStack

The RudderStack JavaScript source is required track the events from your Eleventy app. Follow these steps to set it up in your RudderStack dashboard:

  1. Note the data plane URL in your RudderStack dashboard. This is required to set up the JavaScript SDK in your Eleventy app.
Data plane URL
  1. Click the Sources button in the left navigation bar and select New Source to create a source. Under Sources, select Event Streams > JavaScript.
  2. Assign a name to your source and click Continue.
  3. Your JavaScript source is now configured. Note down the write key for this source:
JavaScript source write key

Installing and configuring the JavaScript SDK in your Eleventy site

To integrate RudderStack with your Eleventy site and set up the tracking code, follow the steps below:

  1. In your Eleventy project, navigate to the _site folder and open index.html.
  2. Add the following script within the head tag of the page:
<script>
rudderanalytics = window.rudderanalytics = [];
for (var methods = ["load", "page", "track", "identify", "alias", "group", "ready", "reset", "getAnonymousId", "setAnonymousId"], i = 0; i < methods.length; i++) {
  var method = methods[i];
  rudderanalytics[method] = function(a) {
    return function() {
      rudderanalytics.push([a].concat(Array.prototype.slice.call(arguments)))
    }
  }(method)
}
rudderanalytics.load("<WRITE_KEY>", "<DATA_PLANE_URL"),
  rudderanalytics.page();
rudderanalytics.track(
  "Test Event in 11ty", {
    revenue: 30,
    currency: 'INR',
    user_actual_id: 12345
  },
  () => {
    console.log("Track call");
  }
);
</script>
<script src="https://cdn.rudderlabs.com/rudder-analytics.min.js"></script>
  1. Replace <WRITE_KEY> and `<DATA_PLANE_URL> with your JavaScript source write key and the data plane URL obtained in the Creating a JavaScript source in RudderStack section above.
info
Refer to the sample Eleventy site in the RudderStack Sample Applications repository for more information.

Configuring a destination in RudderStack

This section details the steps required to set up a destination in RudderStack, where you can send all events tracked by the JavaScript SDK you set up above.

  1. In your RudderStack dashboard, click Destinations > New destination.
  2. Choose your preferred destination from the list.
  3. Assign a name to the destination and click Continue.
  4. Select the JavaScript source configured in the above section and click Continue.
  5. Configure the destination with the required settings.
info
Optionally, you can add a user transformations to this destination to transform your events.

Deploying your Eleventy site and verifying the event stream

To verify if your event stream is working correctly, deploy your Eleventy site and test if the events are tracked and delivered correctly. Follow these steps:

  1. From your terminal, navigate to the folder containing your Eleventy site and run the following command:
npx @11ty/eleventy --serve
  1. Open the local server URL(generally http://localhost:8080/) in your browser to view the site.
  2. Go to your browser’s developer tools and check the Network tab to verify if the RudderStack JavaScript SDK (rudder-analytics.js) is loaded correctly. The following image highlights this option for Google Chrome:
Chrome Network tab
  1. Click the various links or pages in your site for RudderStack to track these actions.
  2. Go to the Live Events tab of your JavaScript source in the RudderStack dashboard to check if the events are tracked. Note that you may face a minor delay before the events start showing up in your dashboard.
  3. Go to your destination to verify if the events are received successfully.


Questions? Contact us by email or on Slack