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.20.0/bundle.tracing.min.js"
  integrity="sha384-izNOxx9cwrvCyJjcPDvYn7rn8mjHLH5r1caW/6eXvt6ASA6co6dgMomL/90dTsWX"
  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.20.0/bundle.tracing.replay.min.js"
  integrity="sha384-e4DRKCQjGj8HoVTcv07HyAm3g1wDECvRclj9gsw2d06z1aLh+78iJ21phn6RhkJD"
  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.20.0/bundle.replay.min.js"
  integrity="sha384-3RyGu38xD2r+OrNF2g9Ekem9LqdE766XjQCz0pIzabGm4T52CIDxkyWUq7klKDVd"
  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.20.0/bundle.min.js"
  integrity="sha384-z2w2QNhJMLFufDEwmUAZ6X2yR8lD8V5x2QIjLzkr+clOf5plzOPzSIeZ+WO/WCX7"
  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-XkE91la+bhSw72VOwZk8KuZnVlG8MouQgoxlho1Wrq06n1wSLrUW04caScIEQa0W
browserprofiling.jssha384-VuYB00wgMiKP7HOUMk9V0xGq69jPe0NIQ0tJmG1SkOi6SRoCEZzRBBTS0Q0zmwdY
browserprofiling.min.jssha384-ot6hOvZ4kiYWmrDs7DXaFuTv7NWXEwwW8BU6xYXJufpkPU7cTmmmx8nwZLyZNJbq
bundle.debug.min.jssha384-HcguzDVc251zvK/Pp9sRfGF+94iESvJYve06lM0SejGeiFVKoOQRb5d6Lo+Q02mF
bundle.feedback.debug.min.jssha384-Ayh89ZorN9suToacR9LW4yO/jvzztrwhMcrYrxK118MWCVSxTCkcJno+iIdSYfNf
bundle.feedback.jssha384-cmLMm641RvwpLhd/ZHZDWDLakTWuqj1B3gC3UiVufhL3mIEsq/V9MF54D+VdnLFO
bundle.feedback.min.jssha384-9OeUTpK3QPAVFnBl9Hu/XMn87Q2wDCVotmYmZGmiJNBtUBBXpMidZtM/K1GHeUFa
bundle.jssha384-DKaQgWfMn28OQnTOdEKxoxzMSbU4UWLP8TG+fULhYp1e9SzRBB3lnwwvpScOgVy1
bundle.min.jssha384-z2w2QNhJMLFufDEwmUAZ6X2yR8lD8V5x2QIjLzkr+clOf5plzOPzSIeZ+WO/WCX7
bundle.replay.debug.min.jssha384-mAmLIHMBOEhVR2MKSgJx6w2tnwocfTnBepAme3vCtEth97FEonrVuzv8aSXRNh6j
bundle.replay.jssha384-wyfQ4e5xTYl0KbghnJ2fnKIG+0WIfPZ18En1XHDiZzAWregnrWRNZYaWMfZbxpoD
bundle.replay.min.jssha384-3RyGu38xD2r+OrNF2g9Ekem9LqdE766XjQCz0pIzabGm4T52CIDxkyWUq7klKDVd
bundle.tracing.debug.min.jssha384-E0zkbmmFZYBCgNmUkUp8w7JBeJK4jIYqMIRb2//wP7c85xnSt8BQanVkabpXJ1cl
bundle.tracing.jssha384-/DgwAUCcAwCkH6ZrHicwLpllOgFkYam5/oI3ZuN5Fpfv+Z3QmV70m7Xms/qPltkn
bundle.tracing.min.jssha384-izNOxx9cwrvCyJjcPDvYn7rn8mjHLH5r1caW/6eXvt6ASA6co6dgMomL/90dTsWX
bundle.tracing.replay.debug.min.jssha384-SGU1Ixp4Vw5ySwD8NeGDGm2XPr7pu1juK4H3MgSytSiCWE8HEbm7e4ovkkTY/Mi2
bundle.tracing.replay.feedback.debug.min.jssha384-Vw5oAuTJH2a/q4kayvnYQidd8yQTaod3/EeuZ08FoqPN2ZS5dmRPblzjsRyJ8T4C
bundle.tracing.replay.feedback.jssha384-SHYWtezLIUkrGLkOch3S0hrIz3Mkb1dzmFROTAKbIKBb+hSK4VrsGO4LBGXItEbN
bundle.tracing.replay.feedback.min.jssha384-t3CmGEq1Y1SCO6SllU5UO+xpCEna1qq3c17Jsh1XIAED0gt0Y/tcwqoKNNm8Xfo+
bundle.tracing.replay.jssha384-nVS/WpXl5/g71j+EAUQO23A6dSnF2eCCwM3ZTO+kn/4suH76dxAYWDfD79RJ3yEu
bundle.tracing.replay.min.jssha384-e4DRKCQjGj8HoVTcv07HyAm3g1wDECvRclj9gsw2d06z1aLh+78iJ21phn6RhkJD
captureconsole.debug.min.jssha384-Yb5lP5HdHirDcXDnE+ur2mN9DKZ4pkgEyci6ciL9TyVivmz/yK28DKNhMAjbg+wi
captureconsole.jssha384-P0j3p3bCGNV2bN27pXh317r0pBtiCi4FIxwAWaPNcn8gFkB7glR/UqbBxBxuLZ7B
captureconsole.min.jssha384-OF6l63wgn95KnJKydw+w4hXt8Vtvrv/ONCu9mjtOraHVgM8cNuTerHJX5r9muB3g
contextlines.debug.min.jssha384-pDcxr3MbbKqDguVqr0RO3xwsPnMzmt+b3spJkuBTk4qfUf8c657F5a9oXt53ViP2
contextlines.jssha384-MmjusfuHTf7n3D1ozLwu4ztPd1CRbwMSVqQp02LVa4X/ScJt0y3LQHWkh5gUa7pb
contextlines.min.jssha384-ozaFe+srxZ/4goi0tFPZ5DJMiBPV3ElvB+/abFId8sthZQZD1K7O1tV+4lBStOwD
debug.debug.min.jssha384-b28hnLeFn+XwTjDF9WnpmDr81E1vYt8w1FMMb7ZuW+O+/MeZOsUk+eAfj7WKKf4P
debug.jssha384-KmhgWnpKl+gwNHjO29tDSrEuUVIV7pQToFvuQr3CnkgIv807g0NjLnoh0meFcYgm
debug.min.jssha384-sWhpu+L9Slu7ioJERAUu6Lk/hBZkhk3uQUGLFzKr7BpUjWoy6gxdTCEmyNugGnvH
dedupe.debug.min.jssha384-WIbRUaO9zUsGfSo7HeSx10v4cX9GjHEkllvOPjzU49rIH+G3w7n2aAMPA6X29FlU
dedupe.jssha384-ltJdOsYaWfs9dBau3PbjgiFbXTb6eKAMpgEuZLu4zviOejpLZF64CbMhDRF3IRjz
dedupe.min.jssha384-O02pri/3Z4FZs0g59LGHaLPKHOIIC4mCpXTXogseUpuieGIP8d56RAJh31RdF9HZ
extraerrordata.debug.min.jssha384-/6jf1tY9h0DiMZSTVzxm0HIrH2yRej1nTYnewX5Y/Xer2MmORojEwD3gRZSJSLgJ
extraerrordata.jssha384-WV85LgC26M3/+NC/wb1lfMQp/Yjpg/M1lQEi13lvWXJW1gpdxISKSxDOnABF8a3V
extraerrordata.min.jssha384-AUma+uCSJDcF+nEJMCel9pUAErH4jyQyN2hO48hTcwkTy7fcATNjf8gcaQuFiWea
feedback-modal.debug.min.jssha384-lKQpzjlnk+sDJk9xQpoCMxsYPZdfgY2dJN7d0gIZwNtrIBqG5fI0EGs8g74Qbsvp
feedback-modal.jssha384-/aXtwBKsB2hQO+48EMh2utrC9R8odc074VqYJbD0dxJ4UFXhravhCj1TCApdcsnB
feedback-modal.min.jssha384-uZY5byMcZzcqcr0kB5iOHSSWHIvj13oMYE981CC6JDyf37kfV2aF3b5omOvH6cRW
feedback-screenshot.debug.min.jssha384-agUl9+orD/qs7b57LPSt0GsQCDpOPrN2/wiKg4q3rXbLjiKO9ZZZ6ZbVgx6TNNhJ
feedback-screenshot.jssha384-fSr5DoZuGscipR619mEnv3kr6tGPWBkC9Ns80kz3k0Z+T3aGorNZiqj5vA+fL4gX
feedback-screenshot.min.jssha384-or64Ew8A7C59YNVt1eImVWG/66Xya1f/4K2zSfzNZWum3FFfIOqYI1x8iXW7bzTt
feedback.debug.min.jssha384-dA5WOoqeT1Znstp1SxFVtuaddQsUjNWzCybL0V8nv6TvW6OtUHhv7KZyZDqmZr8E
feedback.jssha384-6tNs+KE+ycCh9q1ASGV/ACkakXOofM0ztSPJg6DiKgjl4IXISXZmdWAVsFpbvLsp
feedback.min.jssha384-YhixS9bun8tLOY3KbAL+IcNkq4P3dtfwO7iRY+X+TDGWNWWVlAJkghhuyFy+T4AQ
httpclient.debug.min.jssha384-9XWhuu5h+LMqBkag6IRLl5GN5OQWiGZENrXzIvSvnBILLNFAu8kQ8d0tx5DPCROx
httpclient.jssha384-565Yj8jIcNCCQwGm7Ae3XlW85H9H5HVwByyBh5GFFZWUzJLY/MxNtt4/dZPTEp1p
httpclient.min.jssha384-bYhiZn9ZfyWaBW0lzgLo6GW/XpWtJG1UZqQR0dQ1+4frKdPCE03/cV63OZUfDF3w
replay-canvas.debug.min.jssha384-mqIXDoEujIb/EkZrPK8rZZ8mRkSxp/t+u58458YfEJArQA/yS/EUUVsvKJa0CMuD
replay-canvas.jssha384-ASBH9rQsuxLfmo0fpENzbRehj7p3NerCL01IUQLFWMWbg+5lDdAdEkKMx0+Y9+b1
replay-canvas.min.jssha384-aIT6Gx4JYD7IZIGyXUmQG09/NYSFYt3Gdz3QWNCPXWd6VXdPkjL7lQQXmd1nvJsL
reportingobserver.debug.min.jssha384-cxDOfxbKyqWjEnGj3zQT7kElfy2j753aAvCqES7R2E0Nb2REbk0MS+GqtTFNtNPS
reportingobserver.jssha384-Hv74tvxq/o3k43CuJlvAloLQ2khEX3WdHVb33kEfAIuGcgrtGhUV2odftqLJpgQs
reportingobserver.min.jssha384-uF+vr/hDYJwz+51mdggd/C4qUYrJpogPSX5XpXTlLXI9Ycaq9k1B/AT1jv5P5wZe
rewriteframes.debug.min.jssha384-XaSBWoEt9FRPsiTju2CvYWkqlDXlkU8Ov6HDzDo8cbtMIXBF7MwuNj3c9mmFSg4P
rewriteframes.jssha384-AALQdiI11oUYsGlDMQOtV3yjKElbQlCWrI5PvIFogSvTpHIHRjQHHoKLfDMFET0R
rewriteframes.min.jssha384-kdtwKHy8OwM2q7I+tBZX5m1N2eJj1AnLFxps8jHkyocxOxg5tuAxUTDQXxxNUI3F
sessiontiming.debug.min.jssha384-/tx4zzrDkOThVxW95dRNa/O562ipxBDnWnlZqavF+ilKVnVHVhvOiaBqsO5S3mnq
sessiontiming.jssha384-TFYbpj2BsUf8fiIhx6F71z3Un6llB0yrXNLGtKeeHKiN2hLtP8avd9PkhArOnn1y
sessiontiming.min.jssha384-1NM965HSrRkOfuxB+/cfEQqWbFynozKJTFNQ3U6/yCzRtUtz+bl/7TuG9iFabssN

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