Loader Script

Learn about the Sentry JavaScript Loader Script

The Loader Script is the easiest way to initialize the Sentry SDK. The Loader Script also automatically keeps your Sentry SDK up to date and offers configuration for different Sentry features.

To use the loader, go in the Sentry UI to Settings > Projects > (select project) > Client Keys (DSN), and then press the "Configure" button. Copy the script tag from the "JavaScript Loader" section and include it as the first script on your page. By including it first, you allow it to catch and buffer events from any subsequent scripts, while still ensuring the full SDK doesn't load until after everything else has run.

Copied
<script
  src="https://js.sentry-cdn.com/examplePublicKey.min.js"
  crossorigin="anonymous"
></script>

By default, Tracing and Session Replay are enabled.

To have correct stack traces for minified asset files when using the Loader Script, you will have to either host your Source Maps publicly or upload them to Sentry.

The loader has a few configuration options:

  • What version of the SDK to load
  • Using Tracing
  • Using Session Replay
  • Showing debug logs

To configure the version, use the dropdown in the "JavaScript Loader" settings, directly beneath the script tag you copied earlier.

JavaScript Loader Settings

Note that because of caching, it can take a few minutes for version changes made here to take effect.

If you only use the Loader for errors, the loader won't load the full SDK until triggered by one of the following:

  • an unhandled error
  • an unhandled promise rejection
  • a call to Sentry.captureException
  • a call to Sentry.captureMessage
  • a call to Sentry.captureEvent

Once one of those occurs, the loader will buffer that event and immediately request the full SDK from our CDN. Any events that occur between that request being made and the completion of SDK initialization will also be buffered, and all buffered events will be sent to Sentry once the SDK is fully initialized.

Alternatively, you can set the loader to request the full SDK earlier: still as part of page load, but after all of the other JavaScript on the page has run. (In other words, in a subsequent event loop.) To do this, include data-lazy="no" in your script tag.

Copied
<script
  src="https://js.sentry-cdn.com/examplePublicKey.min.js"
  crossorigin="anonymous"
  data-lazy="no"
></script>

Finally, if you want to control the timing yourself, you can call Sentry.forceLoad(). You can do this as early as immediately after the loader runs (which has the same effect as setting data-lazy="no") and as late as the first unhandled error, unhandled promise rejection, or call to Sentry.captureMessage or Sentry.captureEvent (which has the same effect as not calling it at all). Note that you can't delay loading past one of the aforementioned triggering events.

If Tracing and/or Session Replay is enabled, the SDK will immediately fetch and initialize the bundle to make sure it can capture transactions and/or replays once the page loads.

While the Loader Script will work out of the box without any configuration in your application, you can still configure the SDK according to your needs.

For Tracing, the SDK will be initialized with tracesSampleRate: 1 by default. This means that the SDK will capture all traces.

For Session Replay, the defaults are replaysSessionSampleRate: 0.1 and replaysOnErrorSampleRate: 1. This means Replays will be captured for 10% of all normal sessions and for all sessions with an error.

You can configure the release by adding the following to your page:

Copied
<script>
  window.SENTRY_RELEASE = {
    id: "...",
  };
</script>

The loader script always includes a call to Sentry.init with a default configuration, including your DSN. If you want to configure your SDK beyond that, you can configure a custom init call by defining a window.sentryOnLoad function. Whatever is defined inside of this function will always be called first, before any other SDK method is called.

Be sure to define this function before you add the loader script, to ensure it can be called at the right time:

Copied
<script>
  // Configure sentryOnLoad before adding the Loader Script
  window.sentryOnLoad = function () {
    Sentry.init({
      // add custom config here
    });
  };
</script>

<script
  src="https://js.sentry-cdn.com/examplePublicKey.min.js"
  crossorigin="anonymous"
></script>

Inside of the window.sentryOnLoad function, you can configure a custom Sentry.init() call. You can configure your SDK exactly the way you would if you were using the CDN, with one difference: your Sentry.init() call doesn't need to include your DSN, since it's already been set. Inside of this function, the full Sentry SDK is guaranteed to be loaded & available.

Copied
<script>
  // Configure sentryOnLoad before adding the Loader Script
  window.sentryOnLoad = function () {
    Sentry.init({
      release: " ... ",
      environment: " ... "
    });
    Sentry.setTag(...);
    // etc.
  };
</script>

By default, the loader will make sure you can call these functions directly on Sentry at any time, even if the SDK is not yet loaded:

  • Sentry.captureException()
  • Sentry.captureMessage()
  • Sentry.captureEvent()
  • Sentry.addBreadcrumb()
  • Sentry.withScope()
  • Sentry.showReportDialog()

If you want to call any other method when using the Loader, you have to guard it with Sentry.onLoad(). Any callback given to onLoad() will be called either immediately (if the SDK is already loaded), or later once the SDK has been loaded:

Copied
<script>
  window.sentryOnLoad = function () {
    Sentry.init({
      // ...
    });
  };
</script>

<script
  src="https://js.sentry-cdn.com/examplePublicKey.min.js"
  crossorigin="anonymous"
></script>

<script>
  // Guard against window.Sentry not being available, e.g. due to Ad-blockers
  window.Sentry &&
    Sentry.onLoad(function () {
      // Inside of this callback,
      // we guarantee that `Sentry` is fully loaded and all APIs are available
      const client = Sentry.getClient();
      // do something custom here
    });
</script>

When using the Loader Script with just errors, the script injects the SDK asynchronously. This means that only unhandled errors and unhandled promise rejections will be caught and buffered before the SDK is fully loaded. Specifically, capturing breadcrumb data will not be available until the SDK is fully loaded and initialized. To reduce the amount of time these features are unavailable, set data-lazy="no" or call forceLoad() as described above.

If you want to understand the inner workings of the loader itself, you can read the documented source code in all its glory over at the Sentry repository.

Because the loader script injects the actual SDK asynchronously to keep your pageload performance high, the SDK's tracing functionality is only available once the SDK is loaded and initialized. This means that if you e.g. have fetch calls right at the beginning of your application, they might not be traced. If this is a critical issue for you, you have two options to ensure that all your fetch calls are traced:

  • Initialize the SDK in window.sentryOnLoad as described in Custom Configuration. Then make your fetch call in the Sentry.onload callback.
    Example
    Copied
    <script>
      window.sentryOnLoad = function () {
        Sentry.init({
          // ...
        });
      };
    </script>
    
    <script
      src="https://js.sentry-cdn.com/examplePublicKey.min.js"
      crossorigin="anonymous"
    ></script>
    
    <script>
      Sentry.onLoad(function () {
        fetch("/api/users");
      });
    </script>
    
  • Use the CDN bundles instead of the Loader Script. This will ensure that the SDK is loaded synchronously, and that all your fetch calls are traced.

Sentry supports loading the JavaScript SDK from a CDN. Generally we suggest using our Loader instead. If you must use a CDN, see Available Bundles below.

To use Sentry for error and tracing, you can use the following bundle:

Copied
<script
  src="https://browser.sentry-cdn.com/9.25.1/bundle.tracing.min.js"
  integrity="sha384-ZeIiT6Kx36jM3FEVDS/E+jliFv5ZXEM2S1tFXhu2f6Jn1ELAArbA+pWXfkgHHBDu"
  crossorigin="anonymous"
></script>

To use Sentry for error and tracing, as well as for Session Replay, you can use the following bundle:

Copied
<script
  src="https://browser.sentry-cdn.com/9.25.1/bundle.tracing.replay.min.js"
  integrity="sha384-6vM2y0JA2TDjGaqcUJzVRWJrZy/1QkdJT7zuLtTQS5yl0ZyTCK8ILAKsVghZBiSX"
  crossorigin="anonymous"
></script>

To use Sentry for error monitoring, as well as for Session Replay, but not for tracing, you can use the following bundle:

Copied
<script
  src="https://browser.sentry-cdn.com/9.25.1/bundle.replay.min.js"
  integrity="sha384-zbtqUKGvisms7HyptJ752HjoFPKhdximeJBoI7IVu3Ge9kSip1yDu3DRFSBktMIq"
  crossorigin="anonymous"
></script>

If you only use Sentry for error monitoring, and don't need performance tracing or replay functionality, you can use the following bundle:

Copied
<script
  src="https://browser.sentry-cdn.com/9.25.1/bundle.min.js"
  integrity="sha384-45/99M51OpBaNBNeyPS3uNmDiopRejQvrkjNuBtcg4KA56XyiStONNFj/l094qvv"
  crossorigin="anonymous"
></script>

Once you've included the Sentry SDK bundle in your page, you can use Sentry in your own bundle:

Copied
Sentry.init({
  dsn: "https://examplePublicKey@o0.ingest.sentry.io/0",
  // this assumes your build process replaces `process.env.npm_package_version` with a value
  release: "my-project-name@" + process.env.npm_package_version,
  integrations: [
    // If you use a bundle with tracing enabled, add the BrowserTracing integration
    Sentry.browserTracingIntegration(),
    // If you use a bundle with session replay enabled, add the Replay integration
    Sentry.replayIntegration(),
  ],

  // We recommend adjusting this value in production, or using tracesSampler
  // for finer control
  tracesSampleRate: 1.0,

  // Set `tracePropagationTargets` to control for which URLs distributed tracing should be enabled
  tracePropagationTargets: ["localhost", /^https:\/\/yourserver\.io\/api/],
});

Our CDN hosts a variety of bundles:

  • @sentry/browser with error monitoring only (named bundle.<modifiers>.js)
  • @sentry/browser with error and tracing (named bundle.tracing.<modifiers>.js)
  • @sentry/browser with error and session replay (named bundle.replay.<modifiers>.js)
  • @sentry/browser with error, tracing and session replay (named bundle.tracing.replay.<modifiers>.js)
  • each of the integrations in @sentry/integrations (named <integration-name>.<modifiers>.js)

Each bundle is offered in both ES6 and ES5 versions. Since v7 of the SDK, the bundles are ES6 by default. To use the ES5 bundle, add the .es5 modifier.

Each version has three bundle varieties:

  • minified (.min)
  • unminified (no .min), includes debug logging
  • minified with debug logging (.debug.min)

Bundles that include debug logging output more detailed log messages, which can be helpful for debugging problems. Make sure to enable debug to see debug messages in the console. Unminified and debug logging bundles have a greater bundle size than minified ones.

For example:

  • bundle.js is @sentry/browser, compiled to ES6 but not minified, with debug logging included (as it is for all unminified bundles)
  • rewriteframes.es5.min.js is the RewriteFrames integration, compiled to ES5 and minified, with no debug logging
  • bundle.tracing.es5.debug.min.js is @sentry/browser with tracing enabled, compiled to ES5 and minified, with debug logging included
FileIntegrity Checksum
browserprofiling.debug.min.jssha384-T+A8W6MGYFKEC/UpQK2tad0YOAYCRsfy2HxTIBL2tUXdHcGrbsOZah9TLtnnTDoy
browserprofiling.jssha384-9/Scs2QubiQcOwRBmiq5h9O4JspzZXtfccQArbRwZ4bYXI+rYpY+TaEvJx8uwPa8
browserprofiling.min.jssha384-0PjD3TesM/YdKcjjwFvxbPVoEXmwEekOWxk8oihBNPpaCHmtFcr3qRvDsbY8Dr8c
bundle.debug.min.jssha384-iD+jFZE2KpKFRnp+w40WHidFFZmAif6LVVyKqLkIp4wsPbckPVgT3XFdJTB9xJWY
bundle.feedback.debug.min.jssha384-ekEvKdJzdpPyFnHbHll6CDz+DD5YqPdlVGc2PhQ15f4mLdX1HX/6/dQaIhIJcl72
bundle.feedback.jssha384-lNBkdlchfqdGpgjAHOLNG4EcT8BZEA+PLGgKql7E49RANr/5fAX2D8hqJpv5BGQb
bundle.feedback.min.jssha384-28wUKc+17PXVtBikwW9hCURGXga6rPKSqSeD+Bi4qjW+0NjeWTLYDDpYxhcdF12w
bundle.jssha384-kyc2+vbrdnVQz34TWywH8ARF4a6Jd7bLNalRUcnq5rxIsRbRhxXZWk47I6KGIhuZ
bundle.min.jssha384-45/99M51OpBaNBNeyPS3uNmDiopRejQvrkjNuBtcg4KA56XyiStONNFj/l094qvv
bundle.replay.debug.min.jssha384-QzFbkTVBvx/rMjBIwOQa80qce1kQC99fD4EAs2I80HQLABeDgObFuzAqeo9j+4OC
bundle.replay.jssha384-qFcpE7hIaae9z3OTPzoZbYSoG1PSfgSEQc0f/k7lieAUvkgl7GmCi3gVGOrgp5IR
bundle.replay.min.jssha384-zbtqUKGvisms7HyptJ752HjoFPKhdximeJBoI7IVu3Ge9kSip1yDu3DRFSBktMIq
bundle.tracing.debug.min.jssha384-Phe6mBEcsIhHzq2SYkhe+W7H+a5DOzweau3kWkfc213CBeq+gv4JTNmX4B3T2zJL
bundle.tracing.jssha384-lFQmQ1+Xc6Apdbxd09cdgu1hwKXlKMOkpNJWub3b+RtjyJMdJ/0sgBa8clbGqSby
bundle.tracing.min.jssha384-ZeIiT6Kx36jM3FEVDS/E+jliFv5ZXEM2S1tFXhu2f6Jn1ELAArbA+pWXfkgHHBDu
bundle.tracing.replay.debug.min.jssha384-IUWi+qvImdCenYayomMZVJEY1CdkL8lq1lqUZAVQqdt4IPdzEyFDQyer3uL9WDzZ
bundle.tracing.replay.feedback.debug.min.jssha384-83QyWNyXB9I5brKMRFlha6l0Re0HAKrWJKhmuTDJ2wnzFr6E4DD89rtDNuoRafs+
bundle.tracing.replay.feedback.jssha384-DR0zYr6hk+VqazqQ58oG6agEy7pqI3S6ShLOVYC/AmNmH888jXCaS1MoSvyPmPi2
bundle.tracing.replay.feedback.min.jssha384-P49pUOI/tWJDwJZ+BlsFp6FtprQZYGbKybd+ob1aiTq5Lkb+NOkH9AV6qFKyilnY
bundle.tracing.replay.jssha384-Uz702aA9BSDCVGuNI21lMpixOymBczKV8ozWKEQHs5nFqJ9bghWxYXZRVHO0BzkI
bundle.tracing.replay.min.jssha384-6vM2y0JA2TDjGaqcUJzVRWJrZy/1QkdJT7zuLtTQS5yl0ZyTCK8ILAKsVghZBiSX
captureconsole.debug.min.jssha384-3lZzS/KYNP/JvAnCswZQAe3GKFC6pJRXlEUutGWkGnwfnPfSsXWsQxiCRXKuhjfa
captureconsole.jssha384-CELADpvS/OFC7IFp7GBk/YyzPJCqK/W9N5tAkD3UrD8jepzVF8pK0QWwG3Ff2PpF
captureconsole.min.jssha384-D8NH1G5WiZQOVm1DXH1tvHIKtEm7y6piA6TLI7G0ZmrTBJq7DHBx75wrG4mJcjff
contextlines.debug.min.jssha384-t/Z2SBlrmURNaZHOkgfrrBTNIZkXV2Pr4XKNdjq5y87/25zp7JZsIG14JTJEYXqw
contextlines.jssha384-dBK+ZmHLyXcrRjQR2asA2aHccTAYbMzPn8z0gvxGRvCiDDf/dVHqVZeTnCjwYNJR
contextlines.min.jssha384-wijD1f8h87a0E4tSKD848ClgeMR6EKfOCeMARtB5RE0Gh+8MHzIA5smJ7sUh2yCn
dedupe.debug.min.jssha384-juisR14AC3s8GpFOAXvB9AUc1tQrLXxUPllCaGirry7ewfPXTynMQjQxNaG9KoQP
dedupe.jssha384-Y8tk+awmp+5q0j+IDytRDn5X2QosG0Bulejzl4iftkdMOpWk2y3kSUv4dp4+GhcE
dedupe.min.jssha384-7qVaZ3gsiX28BXj+TQwx1aZdh5+xRf8WORVSQ1u2K3GN5nJ/P9GBNRXVPvb1qG87
extraerrordata.debug.min.jssha384-SSXTie9qUzpobZ6t2dtavrlCJm/8cwNLoUTJFa1fjSpsSUZRyEekV4DOxEaqkN+v
extraerrordata.jssha384-N8T4KD7XZroNo7LN6couygPtg/bZsuRC1hx2m9+6V0NcqOH7SoZMTtae1UzpIqIB
extraerrordata.min.jssha384-Hv9d4hP5V3SBOCpRfD8dslluGtRy/mGxOkZ3L5PZy/xTAN4rHtQqnU2r6W9klEuF
feedback-modal.debug.min.jssha384-d+eMrAeres8xhg+ghcUQIlOI+2uIs6NxWDIuQjG1/TVmNo6pdD5VzmW/wxRgSBwW
feedback-modal.jssha384-t1HEo3IjErfDlwo8Y2X9u/TFM15i8YSNiXDOr+VwMbx6kHd3600XNL++J2KeVkBD
feedback-modal.min.jssha384-zWjuvfRvfpXv8DGd3wqoR0FbP1vrzph2YsPH3xfuwxIoivthpYkG98/tRRM12K+t
feedback-screenshot.debug.min.jssha384-Du3CO3QaFQgfSVpQzbB4aJrBtJkb13Ub/W4aYNmmNHAt7KacnYNsoMZAwsvpwBxx
feedback-screenshot.jssha384-ZROu5vkis5pTTjW4A8QZqQpU1e7OoAix3g7/jAcGZ6L/euQJ5DdJ+1JjDzfwsd9p
feedback-screenshot.min.jssha384-ivx3jN8MzPc/6Z+hl7XcVqB982DECqsWc78n4JNt48fyl3NeBKMdkS7Van6Acv00
feedback.debug.min.jssha384-u2nqfXZD5flCFsC/zU0DjofRb1VzWvRAbp/RjEMiGcPdZK+YXvrbZmHKkzUXKgXm
feedback.jssha384-awN3whSVuKfOkIyLTVXP12CGQ/NpIVncoPtng7YyJ+OuXPL7AoLlu/RV2gqQZMXn
feedback.min.jssha384-ET3d9sXTJnpJf9mbOJZG94BT4GPoNl4h3J0HbZWsDGklB9iTEqUB6HNzurELgIL1
graphqlclient.debug.min.jssha384-iuphWwgO0WrKusfBeXOyIZvQMcbjLTkxgiGMiowwy+OkBnJuF7JQk4nt7oXDWKMY
graphqlclient.jssha384-1blT8V5CUR29F1AoqoESjqztwNK1/hCniYmFtO+BAIbNIwnGPKFijsQtuA7UABS/
graphqlclient.min.jssha384-BbZL7xnhNyfku4rY7fHmWCDDAMuj7Kbsd8XEJG1eThkZpzZBg+XTCg2csQfqlLCy
httpclient.debug.min.jssha384-6d6ohKrIJVWShdjUorYHIqxfCONINDU+m8cfc3DFRNy0RqecCQldZQiL3R4ta0By
httpclient.jssha384-mSHDUdwn3Sm4mD/q3anB/eQFF7YafPIBZLW+AsukffC7VUOEMnYjqOgdYf6F/nnM
httpclient.min.jssha384-61WEstXV/xy9ZKCCTgrBcMaKTE/viAliHaTm4lpaahC66vg/gPQA0t/ihHmgICeJ
modulemetadata.debug.min.jssha384-DsyoJbGEN9djbscfKNHlIf20E78dEN/3RLiF6QtKmim6eWGVpSfU5WEtFssUeCTg
modulemetadata.jssha384-SpJWU+Ll8wxBn0GO1w+z/aRbilb4v4Mlq1z1Lf7lqj8hL/eyCeYPBWJ5NZJ8FJgR
modulemetadata.min.jssha384-sOYFuEIo9NhsiUcFG1JMrBwJ3cFQaJZSrdjo4cBJH4/9DpFO1bRA4VAXWbvwWq0T
multiplexedtransport.debug.min.jssha384-kFc058aMD4EI9F0sUa3EcqusP3rPERn0G7SANQ88Tj3UdXUAZZNKU10l5uZ4LibW
multiplexedtransport.jssha384-Lwko6dxbKG4Qbmr7En8Kd7W29HtMz0IyA3BV7rhViNT63l78E1coWds2MhcI2ZAp
multiplexedtransport.min.jssha384-zf3sTMzY4Zqe19lp2IMmz1UEm0yHepggRohhQUyePAjGs0LadBzyQT92S/LV7hL6
replay-canvas.debug.min.jssha384-kiyX2f298vNAOZW6NvGwn2vt+SlP6AKEHF+WHrdQTOMNQODHwR9sus7LSxbEP8sp
replay-canvas.jssha384-MmVBx6ctVsBYs7pabCOVRAbTBTkESARfUvRK7epwGi5lG0Dr8G0p4gcJJvY33GVO
replay-canvas.min.jssha384-jeumcSQxxpvUfB7r5+L9+uYIZKmHBULtkdKLBXtR+KTejL/KSrkpMALYvSksJtAZ
replay.debug.min.jssha384-AeNKHPFi9Qf8WV5bcYotvKNxzVscpwmkGlKaR69QkoRSIrx2giFI3F4/+Hl+u5P3
replay.jssha384-jK5c8EHOMKzP10ZW7k8DdPFC099gxfsGF/2Q6KSDiIH7TpcxRFT77I/EZS7ndEPy
replay.min.jssha384-4igUhKqvIrNGKhRga7MSoMDPGa7ccdRqBicvfBY4TlGDCed7KoOr80huVfr8Lnno
reportingobserver.debug.min.jssha384-wqhonzrFscXETOs+9qX0JqP6t+T1m02mWAzS3A5SA6/UOy9fVNCzgYwfxvuvG9Zh
reportingobserver.jssha384-WsnyQtRzpEVIYl8Tt1nvPUJ6P0DOOwAPHcPOYv2+Qd/9bOptC/p87aKG/zAUsF30
reportingobserver.min.jssha384-ermhtyyMHMlvIopYowh3D0zX6ZijSHXrC3T7wDBr7fgv6rbJpUXlEgAexnsqReGC
rewriteframes.debug.min.jssha384-UBb0IAMfb0CSN1yFoX4B/lnx2YwKTER3AVPOV6eDN38XSdydB54s6oI/n3VpbIIo
rewriteframes.jssha384-UsgJELi94znAtSiC24Nl95p4vcYnyWu9xzSU4+qSardOZ7wJdtTT7dmr9KjPnZTr
rewriteframes.min.jssha384-gpju3swuPK4PU3rLyU8z1EnCx9pFFF5HCEYW1O4NeaFAZ2MtKDR93eiWb5WZJZ/+
spotlight.debug.min.jssha384-FPcYV+4dZDUxsNTGn6wVqmPSdgyF3vyadFhwtLYiHbC/RGoNdMLgh/2F77UCmDo0
spotlight.jssha384-JHDJMPkkKPSE4Whs12dEZs97YNTShL4hyfV5T15i/or3iegiLU87sjOPy1PBuLEa
spotlight.min.jssha384-xsqL9X+tZwoDYH82T5Oxq41GFM327rIepXKcEUebIAmwIZ4nHrVdfCddI8o0PbLr

To find the integrity hashes for older SDK versions, you can view our SDK release registry for the Browser SDK here.

If you use the defer script attribute, we strongly recommend that you place the script tag for the browser SDK first and mark all of your other scripts with defer (but not async). This will guarantee that that the Sentry SDK is executed before any of the others.

Without doing this you will find that it's possible for errors to occur before Sentry is loaded, which means you'll be flying blind to those issues.

If you have a Content Security Policy (CSP) set up on your site, you will need to add the script-src of wherever you're loading the SDK from, and the origin of your DSN. For example:

  • script-src: https://browser.sentry-cdn.com https://js.sentry-cdn.com
  • connect-src: *.sentry.io
Was this helpful?
Help improve this content
Our documentation is open source and available on GitHub. Your contributions are welcome, whether fixing a typo (drat!) or suggesting an update ("yeah, this would be better").