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.37.0/bundle.tracing.min.js"
  integrity="sha384-MV/k6DHQzN94fShsm90gKMG3v9+FynITt+OeY3LDsrH9wMXwveRNJBZgzTavqe1q"
  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.37.0/bundle.tracing.replay.min.js"
  integrity="sha384-WQCQXyqqFCRHvVg5rApYOW05vfgUJuoWcKVg1KdmmgxL2bn3DYZtl8RJUe6fxrqr"
  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.37.0/bundle.replay.min.js"
  integrity="sha384-W9xSxplpLUR0POrQBaBMLeMDlhyHS32Be5d5j2cIWc2CnZOq4XuyqqV6cNOOA8Ya"
  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.37.0/bundle.min.js"
  integrity="sha384-VAtr7ariv9jfwZnu82hsZzK9wHaSW03GQda1wPycaFOleq5wTnoRG3cccIyh1iS5"
  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-QuSSGqjO6JmQJmNHwEKrUDxmp/fFN6pUj7cej88P2we1q0nt5R7xBm7egBvyKkI/
browserprofiling.jssha384-4QTp1Vz6d/sxvW4I9hUM0ojxuaXX98+zDJkI++QCS8+UlVtMAuUp74Wq9AjAEoe6
browserprofiling.min.jssha384-fQHrG/P78CHkKDMIa5hhilEZ4aYOn6fBtLCe/PYoOgaKmtyh7mCHXXlcA7auPbC4
bundle.debug.min.jssha384-/Q2+MUHiYE/aKBVzf28HN8T19U3jPx2gEelzrTRo3wJexzwfXKNxYCKukKjpSGjW
bundle.feedback.debug.min.jssha384-/uT5NW56sRx+crJRUq0iGfbjojQ0G6iQWNlqy3bEB4ebsOrO9mxCSPNPkrjAAW+f
bundle.feedback.jssha384-SbJI6LsEgBT0U0s+Sjr52Eb8xBzRq32K9yk19qLdvWyWSlnhNZJSdBJIF8vX7tHD
bundle.feedback.min.jssha384-Nliao0yMrYr/e6SSEzuVZdcTS6FLv6eHLGHc16XqgC2TA7nggmsTxvoM2ipSrb/J
bundle.jssha384-P26UD4yYg/o4e8E3pnojskdr4OhP5vK/1WFZfSK2J5OUfKwR09bkS6MIdsmVRwbS
bundle.min.jssha384-VAtr7ariv9jfwZnu82hsZzK9wHaSW03GQda1wPycaFOleq5wTnoRG3cccIyh1iS5
bundle.replay.debug.min.jssha384-sjugAT96MAVhFONBRaBrEnDboWrBwvNdFU1z9cnP+2HLuZTJMIHfwArpdSRWoIkl
bundle.replay.jssha384-3s52EV0LGLGTws/fEABfjkk7GVXrzy6Nfobknx1EmFwG/SoE5GV5pSYRntsqnbcn
bundle.replay.min.jssha384-W9xSxplpLUR0POrQBaBMLeMDlhyHS32Be5d5j2cIWc2CnZOq4XuyqqV6cNOOA8Ya
bundle.tracing.debug.min.jssha384-FSqlI0K3RNikirbwdqmph3FQQOrbgw1ZZNZK6dTA8k280kHnKnK3kpD9d0ebxwue
bundle.tracing.jssha384-YKWTAa+I6Y3Swh36y2G9gYTtiR37C6hXBsrGQmLdVNcQcHhP44Gqy04Sq6O3cyTN
bundle.tracing.min.jssha384-MV/k6DHQzN94fShsm90gKMG3v9+FynITt+OeY3LDsrH9wMXwveRNJBZgzTavqe1q
bundle.tracing.replay.debug.min.jssha384-VwiL4D1sifFR9W/sLtO10tcKH2Lpacp9XuLOPuxjvfuFFdoEzHQpR8lKuT9smijw
bundle.tracing.replay.feedback.debug.min.jssha384-QoWx4rQHz1cV234g4Dv/R0c3NqW/WB20UQtg8/H+zYWrCzzLDq59Cikkxz0ljjYa
bundle.tracing.replay.feedback.jssha384-FxI8wyd3CFVzt5dCUgiUVxGnyrM9ZBYe01mP1gRLjbn7qiKrbeKDluyWE+4n519W
bundle.tracing.replay.feedback.min.jssha384-HkTg50WygJKjOIj8omtMK6Mr4bN0RuEcjhuVDOV0Me5yYHTZYDePf1I18SkygV+7
bundle.tracing.replay.jssha384-HsPFo/vUrL6RdGcNMNtPqR+ZnnfIeH7NClvC58ZgzvsNwHaWEyQurXgAC4POH8KZ
bundle.tracing.replay.min.jssha384-WQCQXyqqFCRHvVg5rApYOW05vfgUJuoWcKVg1KdmmgxL2bn3DYZtl8RJUe6fxrqr
captureconsole.debug.min.jssha384-PA8zR9fA5X0ip7UtvQd9QWoC757JGvV3z0WuwMtrk6Mqc4SmiPYxJ77R8DMyJyfy
captureconsole.jssha384-Hc0HLjlP1AoY+n7FjfvM85Wj12cmB6TrvhFKbqZT/CKubRxVBvjaIcHUmnA7Qe5t
captureconsole.min.jssha384-g0yuVBviq4EY/p1YhF4ZarYUXO/RCB7s2AMHZwBi5gOXBRsiC1FjAzqEl1qnKTjA
contextlines.debug.min.jssha384-4xhMvfbRvQaNEao5ORQFOyRF7xozdQODRGJDnlwKVVUT/7/0OfKWODx6WFRp4RNC
contextlines.jssha384-B4yfcshYZ6hVJPIdXgucRTrB3Ggos0DM1SEjSxb+EOtbk88NiJaUyqDfYHD0MjoJ
contextlines.min.jssha384-jyX1PrcqdfmPIWws9jgpDnNJ863SiHgM3ra2MKp+rr2oqEgTT1e4kPumWJRkUKGh
dedupe.debug.min.jssha384-jzs26m3kddrHMLC80dVaC7c7pB29TdH2GQ2ADxsVipiS3W8KAamtyDPslav2k0K0
dedupe.jssha384-Dw5bnsW+RJ4/3T7op+4o8qd5QXaukmqqUJBDFipUUc9gcvuXFLGOg1wlUpc0Tlp1
dedupe.min.jssha384-PQ4+haoQ+hfvsqVYZGqVOeYf7gGvVB+9GWUXoekZxJwCj6KHCxKkagYSbNNcsu3B
extraerrordata.debug.min.jssha384-GyfOJixpS2M49XtWTV+iHpxcENh/5sVyy9Mtb2qWGJeYCNhPQnPToM4mPgUE127/
extraerrordata.jssha384-kPUQrCjHT1/6OZsKPpZMJqyRxOQzT62vxDXA83Y+h0YQ6xTVmTy0ObdsIaPgKe50
extraerrordata.min.jssha384-1I7ZGGt0ADfWm6ZrZTAQTSQsfk8tb/k8G374rEfSuYHucZjNQRMaOlxYSzZD/9bB
feedback-modal.debug.min.jssha384-voojdwTJjiQSdnPBpGEmj7haBio6u5EqRs7NvlMuI7/1Eyq+5kXVz6c88YnYoN/n
feedback-modal.jssha384-PB7wxHo0J1TJOKFZKSVmVJyKI8zSW8/YqdgHkIIVu/NYqhRSbiixmQG1/Qmadx8T
feedback-modal.min.jssha384-KRgonUd2h2f4AKeDVP37f9N7QXS0gzygzScvuh5caSlNTP+uWynRKBBcUrZE5wON
feedback-screenshot.debug.min.jssha384-xbxs1wvOJgHYE+53MPkK9lOJLLpD6AH1zUHADdoisvPzDyMogtJUtdShKWN+/nlX
feedback-screenshot.jssha384-b8d7Y8yOYtmA3oDBbD+Y8wKgkH1RZ1J9UyV5LcDAdEueNHkLIoYIVCQBh3GN/OHp
feedback-screenshot.min.jssha384-ZdCECFNEXyb1QX8oHikRjIkDZsORh444QOmcNGFeXBmnWf5laWLQcD2tVP/svsLb
feedback.debug.min.jssha384-BBlYJn5gGqVRKlz7Bb71u5oqQcTkUUPx+pmptBqSIYfJDOrdL9SeT2x+hFUNCmgy
feedback.jssha384-QnEKfeghXhoBSdR3jKImjD0fRWf4SG2nzUMrxjWS7/rononRQYfEwsLEgPYRi8Ml
feedback.min.jssha384-pozy7D80+aobDqjeKBrey5u5SBgKoOvdE1vZxh6CNCG4MUekKv3j9DK1ypAS5P9z
graphqlclient.debug.min.jssha384-NXadyjHWKXYnkL9qjJG76EkdEFrhCiYTSjxx7JMrlWjnzVVYe0dx+JtpxD2ryrqB
graphqlclient.jssha384-7UJM985FNVNSe+I+TUDWchVk6sLtpzt8QLAA8zupQtyiHD/8LCS5sFUSBTt3W36S
graphqlclient.min.jssha384-jZAAkb2bE2R8rda92o9NaNQoEJALKzeTlLwXiou5U8F58/Js502ifOJ+nv106qd2
httpclient.debug.min.jssha384-mRC4XkgRxq8+sVrSIObrthkFkZojsNyYnCwzMW3Q5/usghchXt5XeCnEjQXYZOCh
httpclient.jssha384-xch3eBpeCtjHzdd1ZQIxj5fhG7gco0OyoglWHh+j0fYSf3BOcaqZTGqdqidAOyUT
httpclient.min.jssha384-dlucSe8K3Unq3s1EBvmEEBA7GG7olH62r0BVadVymHvM369AbOzspWuw0Jfr15rM
modulemetadata.debug.min.jssha384-Ktlgq9gI/abZ0IU9BIQAjhG3L7lWp/8gpj9d9TcKHrpr668ETH/Qn1PwlK5jZmhK
modulemetadata.jssha384-YSxToYfDfE4NPFH8aG72tYHHVKU/7KC0YWfL/RLheoL1wap1ONhHfi1qLTIHk2Yd
modulemetadata.min.jssha384-PvTuTPYgd0BHI+QcW9Eq24cpCG4lmML6TaEjlq+8q9Suqxr79ytYq0yQ0lsgyEUe
multiplexedtransport.debug.min.jssha384-1TPIPrbSk3+rEpnO6p74D7goiUl76q7oZKO2WHQBbraoEA36AsnHlA9a6LsZ37T9
multiplexedtransport.jssha384-A/enmNuGB7HLJ9CB0kIphrQhDQ4YB9s7M/e+69ei0doQTgkTMgAmT6xTACBkLsaq
multiplexedtransport.min.jssha384-b7Y0mfZttIOV1A2fYqNPdAlFh7rqTrHZSEFQGLGp12zNUqbnLxOzE9twgnjHYPBE
replay-canvas.debug.min.jssha384-QBLxkr4kjRkTYLAHZsnTvaN3BbEeWC+RzgFU3f3gBQME9aULsX3X0rFZ4WxSAaVk
replay-canvas.jssha384-8oAPb3TVBo6z3PXzluKuOk6ym9rWrcLYNjGFB2wac3mr41nNTuuATXZFaExqq2pC
replay-canvas.min.jssha384-ADonPVG9dBeX5n2jwoxEZD6vDC4NsGllciNZgkrgcPHcU55Xgt6YmxdQTS3gpKc9
replay.debug.min.jssha384-kY9cQLF+FjcWjO9StvI28mFUOZWoOKEF/TDNihg7eDaPcid8g23k/H2OSRcGeTwB
replay.jssha384-n6QuVuTsJHneFcd2aRVvsTC/lwa+CX0Y2owxTrsXzCGo7eqQqmbGFqrXrmfp26kS
replay.min.jssha384-ymO5O1q8snvdgpYmNRkvIYNIt5n8l/d1zJvqBfCMf/TnUXZ1pHB3hmWajQTHZ0P/
reportingobserver.debug.min.jssha384-Sqk/Et9GELSZwkTXqevIF3sOKBQb46d6bP15ZTqKs7RETXPt6oTbM4PRB/UOMfAa
reportingobserver.jssha384-eIVzhoh5eJ9cOhlA5Lvq+vK8pW4nIfBz10bnbmyYbBDAbu8C6K4b8n11SOhjUgNu
reportingobserver.min.jssha384-ScFPFPfic6aaFuIYxuCYsrsES1EBzijOjw82DwriKFsQ2rSpsdrOwYqcoIuwamMR
rewriteframes.debug.min.jssha384-rsw0dbheSplT/cPmrZOiUfOGbdKnQlvIv5pRaVJn+9OxFIrsoyigZk9pDmm/CSqD
rewriteframes.jssha384-yaIU3I+9ooPqWkor5bl+KVDdH6BiG6tZ1MCsAjDn/wa+tUoIHhohz/BXo3GfYnM5
rewriteframes.min.jssha384-7+6/VFVEaP41uBAm3FOq6aytf/pgu84bV2uZ5JCrFgS0tEt2O/2tNWsU88A1/6Nc
spotlight.debug.min.jssha384-p3I0JsEx7yKWox3pSMIjdJtSxmFQ6SsC6peMb/w3/8jtV/Wwj9vH2lIjmhvT3tSs
spotlight.jssha384-tsr1I9fKIlNyDVRmZuLr8BwxrtXRBPCdbGnsHYGMK9GrEpmf1g86F0bL6r5WuPr3
spotlight.min.jssha384-x+622Bxo0MKZhtKw3yRnjoDPCA/7UaKPGdcZLFlwdnV1nGansfCRlzRMOQynFJqd

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