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
// 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
  });

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.

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/8.24.0/bundle.tracing.min.js"
  integrity="sha384-JJJw4DbjOsDg3bP8VddEg9VZRjwjIVHXUGl7vcAdg8EmxN7gvZkov6/1NuH/4YId"
  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/8.24.0/bundle.tracing.replay.min.js"
  integrity="sha384-eEn/WSvcP5C2h5g0AGe5LCsheNNlNkn/iV8y5zOylmPoOfSyvZ23HBDnOhoB0sdL"
  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/8.24.0/bundle.replay.min.js"
  integrity="sha384-hcJkA6udaEjcWRsHYWrFHXrfI90QSz3JTrrHii9qp2wnCdXXbLX+olBVILsTlVqf"
  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/8.24.0/bundle.min.js"
  integrity="sha384-7KtWflhUrm3yHehS4Ve9sFWf2DzaRFe0WHTTKYRPYuaIacyIttUqDxozcoZur4eP"
  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-TUfLPous++FH2QVqSNuYXHLt9kCDrUWYOwQRV72RBzk6L9B4SDdUxc1EegdkHi1s
browserprofiling.jssha384-GT9kzD2XZDKwgcRLRdKw8+OIgD2n9b0McSbHpW071VIqOkVYSqENzsKAyMwWA2dJ
browserprofiling.min.jssha384-uE6YxRSn/bwiYPaf9HB1/3ASAwurdsD5sE0eb2fkM9bYvXLzbBNgrSnfvoqQAC2H
bundle.debug.min.jssha384-CKfJscj59JhneFA4ej1KnPPfvvLQjAjF9KWGdB+66dl+LkPjLBccledq3bt8IZva
bundle.feedback.debug.min.jssha384-3cAKygA7StcTPmpbNiVoY+fUCZ//K1tmvm4Z+Ha8z22KS1+rbXdr9H4C7OFwpzQY
bundle.feedback.jssha384-rJBjNA8FipN7KmfhfKFPNSsjgjD/DLt9LoCPsa1N7vqZNySwiRuysqkk2pDOxJ8D
bundle.feedback.min.jssha384-PUl1CMVjEjIkoI0q7J8VJSysvMxmhtAXlDa3szryxA2joNlgeICOZ4gnVeFI80yA
bundle.jssha384-JOSfVR5KLe0FBlgIVmEZ/5C96sPB+SyZ2MGXNBbu7wGs08r9/JDiD9BYvdgm0YYy
bundle.min.jssha384-7KtWflhUrm3yHehS4Ve9sFWf2DzaRFe0WHTTKYRPYuaIacyIttUqDxozcoZur4eP
bundle.replay.debug.min.jssha384-HxMK4PdMo4/xVDAVZywFkwWDVRE9RzBGV1PaAt5pfDb+PKK+9tIIrVu8TXE1wsjs
bundle.replay.jssha384-ckFTiDA5fhza/xR8t4FWiqa9NjPxKrFKmyVcH98tpbiwnQcZ/2c2x0KnLKuvuZ42
bundle.replay.min.jssha384-hcJkA6udaEjcWRsHYWrFHXrfI90QSz3JTrrHii9qp2wnCdXXbLX+olBVILsTlVqf
bundle.tracing.debug.min.jssha384-faYTz1Lsp5RWbB07Dvq+4Rd0d53zKIJ8qHO63NQJBkZazCiLzd+hd+Q7aa244v9d
bundle.tracing.jssha384-/lxoQOjDofRm8/8zXpHJfQ5+okp1fAjJZmWy1bCtsrytOjqbKCdF0wPWhRIK4gkf
bundle.tracing.min.jssha384-JJJw4DbjOsDg3bP8VddEg9VZRjwjIVHXUGl7vcAdg8EmxN7gvZkov6/1NuH/4YId
bundle.tracing.replay.debug.min.jssha384-2ICw40DwWC3OvKlxCKv3HolEBALefWbkfqO+SUa70bjXPngqm0OrXWIzpjiIGDlU
bundle.tracing.replay.feedback.debug.min.jssha384-X1/IsMwInf0phel16h4N/f19bGTCleIRA4FemHxszk3XvbXA/cDBhtnxPxKZgVIk
bundle.tracing.replay.feedback.jssha384-tFDxX87Zb4rTwWmimzqjOyyZtKc/+4PC811rRvHTF2BKkc6cEj7WYbHUNdjTZ3v9
bundle.tracing.replay.feedback.min.jssha384-0GCkAsgDcjK2qiRpdp8xjGvE2OljdeGBDOilJ2s72zzeUSjiT5pA/WkX0yNv/poA
bundle.tracing.replay.jssha384-c1b1m3T24FdPd7GSp8JmShbnQRZZQIIDM8Eg+Jeud9hlwKj64h2ivTuVmIZhsx/X
bundle.tracing.replay.min.jssha384-eEn/WSvcP5C2h5g0AGe5LCsheNNlNkn/iV8y5zOylmPoOfSyvZ23HBDnOhoB0sdL
captureconsole.debug.min.jssha384-J4sG3YL7oHEN8yUvrISUoKI6RZ1hSmpjuo/5/fTgjesMFfOSvOnARJcBHTWPzeFS
captureconsole.jssha384-jP7SjF11v34Ee+SRL8UweZaTeaCfsJKOLNXtkPB3RbMlWj3dRumCBSn2tijQyL4x
captureconsole.min.jssha384-4ytgn9U5jlII3rnKqQ2zJClGV0p5IrUFjXoT2PD+4Vxw9WJA6uDQuFUE7/nwnzpk
contextlines.debug.min.jssha384-t4TJRLovdyoO9VA73mCRmowleVS2Fc+Jil8955Wy6K5NgFas+cRQVmrnsLEYHg+k
contextlines.jssha384-M3TAAek5nCnnDkvgk34owt/5xbXAD1ONuPQRYpd+6QIDPTUIr4RL/B7DacX2p//G
contextlines.min.jssha384-oXfyKTI/CEyIK54FrOwlY6Qe/8R/rY+YTp1/rTbksffoxG+SCX6un348dlQp+Jw9
debug.debug.min.jssha384-VaG02FDHTNfo3ev1CA2xfC0+HO6+T6grwbWtgZb7QSC3Iw7Hd9tokp1YY/x7o0H4
debug.jssha384-Rx+OvfKCQicrpxXoQhxzcD1su/3DLnPWSgDbrupfQxc59+K9r7m/DNyk78hMFCcY
debug.min.jssha384-suNrCeMTanaOdmvpSYB0VAgQXeXNXHHBHPkMIKdrR+b5e2/0LHPrdvsMPElCd+El
dedupe.debug.min.jssha384-UIq5WmxtkgcYlmGgbcu6eb8cjqayCahxqcDUdhpIu1yE4tfej1e0ehtliAPRYqEM
dedupe.jssha384-hP7ubDu5P3IdhyWwvlKVvSb6/+y/OIy9G63mBIAC31Mdpij8h6pQ8tsZUgO/tZUV
dedupe.min.jssha384-LSKW0//bDBMhg+S7dCCRg0yC2VfeP4sOIgajkxXUOvswrZC9xlv7ocFFOze4mi8s
extraerrordata.debug.min.jssha384-B5xs9uiEMX/fJtvrhQbLS98IDyc7yBHIkRvw+Nltig5kWhFhkxSHbERrDFyBYqTi
extraerrordata.jssha384-Y8/SfInouv22LLAnvEw30Ov9ydDcqDs8hJ4T0VpmPyJKj4Xw33nbqKSLZ7rvznyd
extraerrordata.min.jssha384-SQHNqOvHjY88Viee1ZI4+i47aWxrsNPyFIP4Lm32whMYVVzog2jUgohHe+n8NN1A
feedback-modal.debug.min.jssha384-t4Am4JDI4h0kTRj07TTSh8wrVKnXY79RY19755WokKqeSdFiCfhaA52bCYpPm80I
feedback-modal.jssha384-4uYYn8br8JJXUtSEmO5ZPOCOJsNjEy/MYDL21QOWPXcMbka5skjcycT0qEsOyxnn
feedback-modal.min.jssha384-YLfJNNYpsEL74Mi+vHihMaKob8vnwRpy31sfIYbvjbkkyqXT6mTXYELfq0Uu9WfA
feedback-screenshot.debug.min.jssha384-VfnfnnjYWFElHRaass2N6LPS5SHdUnvRAuEnp4JT297uutYXs/7F+pfLRVEEM9Z6
feedback-screenshot.jssha384-SXFjcUqmvcbiaTuLaczTs6Z0+QO10pIhYRUREw3Z71q8kWBuhFIXGeOPJPtCycJ6
feedback-screenshot.min.jssha384-hw0cQwmc21grbO40bkiA6KZKNMUIFfdi4wkhX9yaTC45DlrJQyeL+xeS+sl7Ep7R
feedback.debug.min.jssha384-7kknhcpA4Mk3fyeEoAxiYSjHHIyXFAisx805uZC7htvWSs7fFY6pGZBva0vgGN6r
feedback.jssha384-S77CQCB0kgszkKv78oDt+D/E/r+zwdboMJX5EXVRHzABCJ/KIXHimiaKPJ3ng7Ia
feedback.min.jssha384-CJbhBQgYVsNWUJUP+ghML0/+btEgH3lpypTNNoi27qGxcUlM+nB4AJvE4ONbH5TB
httpclient.debug.min.jssha384-xGN/WXgplQ1hr/4OCXz9va55aoJ9XlCwD9UFj0+v/jTKtqQ3H5oBssaIhRH66NNy
httpclient.jssha384-tVg/g5q6g/yRiQSErdO3F1+LTYZUaYAnsFO6O9Qfmn4DuGTZOHD0Cjs+2lmLPDGk
httpclient.min.jssha384-kJ5a5V6pxQiqp3ndD453TnifwRykUObAjwb4lol/YAPIVCUvoNFvutB6Egu/X+ZD
replay-canvas.debug.min.jssha384-EXU4aZZa9AVYg5R0ra3htMOXMw8SC5reQXvO6ImlnnePZsIjjF/7kNnYQaYB4cA8
replay-canvas.jssha384-azZS68ozqkCSOFj2qhXG+WVAstR9+xRoemRGDU+M9+wPM8jK4mHdJ7Gid19QiKRP
replay-canvas.min.jssha384-gSFCG8IdZobb6PWs7SwuaES/R5PPt+gw4y6N/Kkwlic+1Hzf21EUm5Dg/WbYMxTE
reportingobserver.debug.min.jssha384-Ht5gjKOe6LC5T3me4Z4+IqwVyGAZQdTxHgLXToWHd7WSPIuDAw9hVPLKYvD3OGMf
reportingobserver.jssha384-/kd34ZIpA02A6GFgqfIfoBt25bmxMIb3SoupDbByc+dcvWvLMaRtsab7PjbgSbU6
reportingobserver.min.jssha384-ougIQfYzNROAzzLgI78hhYXSZGdPu0/y7mQcE+mb/mLjIWFnP6g984hyK44bbal3
rewriteframes.debug.min.jssha384-InSqT4Wpb9oTnC5TH+iZLmKqqBIO8O02B4Oh9zakquT40TYle4r/dG8pUiy8NeDO
rewriteframes.jssha384-6520WZbuILRpWh0juvnUknaSjPXKM2Kq4gkajceiA3vCHBo4vE/94pyR2EXJG2D+
rewriteframes.min.jssha384-XjG1/Z/D35Re0eOor97i/Y6urMz5CAoEVPfJHo8q3QXueY1sTnX4ac3M263jZRte
sessiontiming.debug.min.jssha384-ZMK3yCUXrlhX1gcpJXPsorVPMdnofuPCrCh1FZdL616G8J7b6d6O7r9DwvdgE/1c
sessiontiming.jssha384-ojc0GAWD/wTcCqwnndOT/ZHkBYBQ7nidauyXXSCaQl2emSaX8xOIYlg/UnWGP55d
sessiontiming.min.jssha384-JK5DgGVAFhJGnmMPYOHQHO53QtE4YjlzZzYiz1wsyrlL/X1C8VGmJF5QXgOKQsGQ

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
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").