# Integrate JavaScript SDK v1.1 with your Hugo site

This guide will help you integrate RudderStack with your Hugo site using the [RudderStack JavaScript SDK]({{< ref "sources/event-streams/sdks/rudderstack-javascript-sdk/_index.md" >}}). On successful integration, you can track and send real-time user events to your preferred destinations via RudderStack.

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

1. [Integrate the JavaScript SDK with your Hugo site and set up the tracking code]({{< ref "#integrating-the-javascript-sdk-with-your-hugo-site" >}})
2. [Configure a destination in RudderStack]({{< ref "#configuring-a-destination-in-rudderstack" >}})
3. [Deploy your Hugo site and verify the events]({{< ref "#deploying-your-hugo-site-and-verifying-the-event-stream" >}})

## Prerequisites

This guide assumes you have installed and set up your Hugo site. Refer to the [Hugo documentation](https://gohugo.io/getting-started/quick-start/) for more information.

## Integrating the JavaScript SDK with your Hugo site

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

1. [Creating a JavaScript source in RudderStack]({{< ref "#creating-a-javascript-source-in-rudderstack" >}}) 
2. [Installing and configuring the JavaScript SDK in your Hugo site]({{< ref "#installing-and-configuring-the-javascript-sdk-in-your-hugo-site" >}})

### Creating a JavaScript source in RudderStack

The RudderStack JavaScript source is required track the events from your Hugo app. Follow these steps to set it up in your [RudderStack dashboard](https://app.rudderstack.com/):

1. Note the data plane URL in your RudderStack dashboard. This is required to set up the JavaScript SDK in your Hugo app.

{{< image src="images/rs-cloud/data-plane-url.webp" alt="Data Plane URL" >}}

2. Click the **Sources** button in the left navigation bar and select **New Source** to create a source. Under **Sources**, select **Event Streams** > **JavaScript**.
3. Assign a name to your source and click **Continue**.
4. Your JavaScript source is now configured. Note down the write key for this source:

{{< image src="images/user-guides/jamstack-guides/write-key.webp" alt="JavaScript source write key" >}}

### Installing and configuring the JavaScript SDK in your Hugo site

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

1. In your Hugo project, navigate to the `layouts` > `partials` folder and open `site-header.html`.
2. Place the following script within the `<header>` section of the page's `<body>`:

```html
<script>
      rudderanalytics = window.rudderanalytics = [];
        var methods = [
          "load",
          "page",
          "track",
          "identify",
          "alias",
          "group",
          "ready",
          "reset",
          // "requireIntegration",
          "setAnonymousId",
          "getAnonymousId",
        ];
        for (var i = 0; i < methods.length; i++) {
          var method = methods[i];
          rudderanalytics[method] = (function (methodName) {
            return function () {
              rudderanalytics.push(
                [methodName].concat(Array.prototype.slice.call(arguments))
              );
            };
          })(method);
        }
        rudderanalytics.load("WRITE_KEY","DATA_PLANE_URL");
        rudderanalytics.track("Simple track call");
    </script> 
    <script src="https://cdn.rudderlabs.com/v1.1/rudder-analytics.min.js"></script>
```

{{< info >}}
If you are using an older version of the JavaScript SDK, see the [Version Migration Guide]({{< ref "archive/javascript-sdk/1.1/version-migration-guide.md" >}}) to migrate to SDK v1.1.
{{< /info >}}

3. 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]({{< ref "#creating-a-javascript-source-in-rudderstack" >}}) section above.

{{< info >}}
See the sample Hugo site in the [RudderStack Sample Applications](https://github.com/rudderlabs/rudder-samples/tree/master/javascript/sample-hugo-site) repository for more information.
{{< /info >}}

## 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]({{< ref "transformations/overview.md" >}}) to this destination to transform your events. 
{{< /info >}}

## Deploying your Hugo site and verifying the event stream

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

1. From your terminal, navigate to the folder containing your Hugo site and run following command:

```bash
hugo server -D
```

2. Open the local server URL(generally `http://localhost:1313/`) in your browser to view the site.
3. 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:

{{< image src="images/user-guides/browser-network-tab.webp" alt="Chrome Network tab" >}}

4. Click the various links or pages in your Hugo site for RudderStack to track these actions.
5. 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.
6. Go to your destination to verify if the events are received successfully.

<br />
