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.31.0/bundle.tracing.min.js"
  integrity="sha384-efnkaGSEikO/xKETjvmLPql5lKWfhPfIvkVvHV8O4adROglQWxvb3xt8Pl1DiWXN"
  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.31.0/bundle.tracing.replay.min.js"
  integrity="sha384-Jzjw8WCNd0TuFyINgYuh3oRZhb9mlumx/bLDn6Zn/f7Es37/nT7gIBLrkeuPQaWE"
  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.31.0/bundle.replay.min.js"
  integrity="sha384-qT48wuSGXWrS+80SiFv9nfBxaGMGSUyMIN8qV8n0lOK0Au31U31uNWL3d2jCbb2Z"
  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.31.0/bundle.min.js"
  integrity="sha384-CQ79eDjkIDlPQHqlgklndR8cxECPduU8ICuM+tzIPpQr1GXxqyJm0bNHXMRIZz03"
  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-eGacRmwGdFOOyGVDiy4uRJ3Xy2iDP0IJLq8zfKWJKjooLk6lyry+GDUexVHKzOVg
browserprofiling.jssha384-HbHH2eM+92oZ4zuTg4OMRXcxQ2lRTSUAVvfPM4zDY7RO7Mu0AcJ9eyx0dAQDew7K
browserprofiling.min.jssha384-4MvUgkNC6ooh1hRa8JMAmJTeovMN6XceoHJ25d8XWJgpJmvS0ErrWU4843PuoWBn
bundle.debug.min.jssha384-T9fSnzqoUPmvbt0Z51yB3poT06K68GvoJYyWMg1K592AlsLlmQr1nqWe+iwkEIJI
bundle.feedback.debug.min.jssha384-jfRZadenGYbWw0uSjpq9M37LzGOBGdP9QH7nd0ATvMNX91Z38WKiI5rsUQMAdkN8
bundle.feedback.jssha384-t3/MBrEZQ20zVRt6GCpLsyc9U1sCwQge7DPSYTqbwac53Asa4zV1Xg8SynZCUa/d
bundle.feedback.min.jssha384-rLMe9MvP0qiWBu2Nsmo0nKtlQ8cnqQd0MXARsKJJBav1m6rSLTf7bqx671keOfBX
bundle.jssha384-e+a11F767gZq0Tsq6cFo3I+QOmUlzf5Kgg0cj4sMi/xFWwPMZbbUI8K5EGpfZmWA
bundle.min.jssha384-CQ79eDjkIDlPQHqlgklndR8cxECPduU8ICuM+tzIPpQr1GXxqyJm0bNHXMRIZz03
bundle.replay.debug.min.jssha384-qC6FgCkiaXzzLcGBDRRINT+1D7NdNBPu7+TwiEcZlU/U4LJTQaFArMgkf1EpDmEs
bundle.replay.jssha384-aNy2TrEW+SwOnhtYIbOAL3ZO6hQz6sfZM+aPl7ghKm1ZNkh3nsUN5qR5je62DXf3
bundle.replay.min.jssha384-qT48wuSGXWrS+80SiFv9nfBxaGMGSUyMIN8qV8n0lOK0Au31U31uNWL3d2jCbb2Z
bundle.tracing.debug.min.jssha384-+N3vTBjkRcxfYBHazz7Nglh2ytkbAnCuUJHnBhbqueoUBUTA3VHp+ody2JR+msk0
bundle.tracing.jssha384-b9G3edGvhdmyhpgl+1jsonmbU/Ppl13+JjKzAjxjcF+Spjg/+AcP64PJW2KoQskH
bundle.tracing.min.jssha384-efnkaGSEikO/xKETjvmLPql5lKWfhPfIvkVvHV8O4adROglQWxvb3xt8Pl1DiWXN
bundle.tracing.replay.debug.min.jssha384-Hqzkl+O9pJyZJhufiiU+XYvTHbWoKYUIpVv6fdHK5YaUTPuQCP5/pBaDO9U0vibX
bundle.tracing.replay.feedback.debug.min.jssha384-cWfk5Rmp4mWJmjeA7D3QWWQIN9uc9251JqcEJseeXrUU66BlZnFhnutAOeOKJRnI
bundle.tracing.replay.feedback.jssha384-8HT9pQEVggwkXCgTesq/majWLZL7b+EvQxMWBYoa4gY4hGmWUFHfQerDtIroGUtq
bundle.tracing.replay.feedback.min.jssha384-5tdGulqBPeBAudcLy8QheNkwvCnxJhPW3vNVUyIZRbt+kxfbIlgdbzxFly1xCTV6
bundle.tracing.replay.jssha384-aijkIKROhxBTQnbL0GOhOQh5N2mgcyYJ5ybUP41tIxp6j1cfvjQwXZKn0/OFvzH2
bundle.tracing.replay.min.jssha384-Jzjw8WCNd0TuFyINgYuh3oRZhb9mlumx/bLDn6Zn/f7Es37/nT7gIBLrkeuPQaWE
captureconsole.debug.min.jssha384-6S+8pUq3KT1Ise+p6j4QNNv+EJcDt/JL6fCNrfKYg4l31l2EFsyZq0IvUc+ChgtV
captureconsole.jssha384-QJzIlbKqbIoMyuFGEp7WO1iWqmFAAwV6FTiPTp8D5JW3P3lYc4E7SKlUMklRXa8j
captureconsole.min.jssha384-XeXob1OhWPQY4Y9LBLNpxxWKy79QhcdLvBCO6OL+dN7LduTyDpvkJZVuzbjvqCd/
contextlines.debug.min.jssha384-BBjNSMOefWoj0gizqlH8HxzhhCCVCKLnYG/3j9esfU8ZR6UBIAuJyOHVABZjofkt
contextlines.jssha384-tep1uQp7k8ZRZnbdHR0Tqglg0L8HP4GMSkUc996f+mvX1TEFr8NtScg7i46iDQ1F
contextlines.min.jssha384-7La8KBUAyeFot8X/dsocRtBw3zkoNTWDwKo62pD+2pEUdVkulWcebda+JzNyW30t
dedupe.debug.min.jssha384-RMDCMxQLMT/HxiAaVABavtOH8PqfiVT6+fwJyoe0k3z309tzFkvpDUYsG0YtxAJw
dedupe.jssha384-W01Oswn/LkPHFip2+DpxS+F34E29ruhhDV9VMBPcq1wQa3IQXEUnxq9uZH6gMMWL
dedupe.min.jssha384-1pQ0rrfJc1QgXJolW8cAZQ5YpPsSQwdJuBGnIogIf/t710AUpx+5TyVy9UXXp9gF
extraerrordata.debug.min.jssha384-ZrU4uAd552GYPgMSxq8qGEl7QgzxBw1aaUN0oOseSumTn3sJCS2DmiW6w1tvrd+t
extraerrordata.jssha384-Mu/NU1SaVt0fe79OLNVOt1aI6giC00Th89eRyBHLmweAHDAwrHTp47116/qFyolP
extraerrordata.min.jssha384-s9v71d4nDBalqMd7y5l8dTLKiHEYMuqugoGenwKYqm3Bo4izHnPM4WxXxFUg/2nf
feedback-modal.debug.min.jssha384-OCTT5fQeeQEUkjKlK/woOdEgWBAVbhjLDj1dRst/vu0K95vfmUFI7D4ZmM0WCzqI
feedback-modal.jssha384-QOuwPfa7MJ3yUAgRH4Z+u+awo2CgR4mTg+VdjduGgy1+sfOKRn6rgSceurM8BSHi
feedback-modal.min.jssha384-I8r3+5hfz1jguEL23xdMgTg++P0CCBKsWG3rK+TgeaeAUlt6dIwKstSRfHdjV+aC
feedback-screenshot.debug.min.jssha384-lAt/QKLMGjp8JoH8P+xniyzpm48WsdDeGUobdaBn4D1GNtO50Dp+LhQ6c2CC1rS5
feedback-screenshot.jssha384-NWVy+QBnQWzBvoPficfRCyHdrIr8rqy9QKp4gQItF57X+5jaj+zYq/zkHOgeEPwP
feedback-screenshot.min.jssha384-NRr5io+rpz8EqzLE1+pwTlhYvUTTMgITNQ7ey+XcoQIdoCRMRYPJ8Rs/I4GMLzjh
feedback.debug.min.jssha384-81Ppi+lnMHCl7AaW1qMgTTC4EtpCfY6//OYiSuY6+AzDRQjvRIhGYhlCXzUgxri9
feedback.jssha384-P6mBRYj8cBjh/UDIr251ADuZjSWDAo3eJ/SiChA9hcCCz2B9SlY74i/q9+E2KX5i
feedback.min.jssha384-sTNBmcaUvmDCBdUHCTsAhgIm0vGafg3v3FbSmCgnkMWgWfJq7CZ2XMPFgPtQS61X
graphqlclient.debug.min.jssha384-MphAqOyXXzLbSJdJ5GbYYCGNcE0qCbvfY0S3Muz+Zjux5CAiH4ZB4/YdKirh8vsP
graphqlclient.jssha384-L0Xds37NL8QfjdIy33idAJEQfELEr+8CnY23pvmlOK/CRnWhpt6MkGqSFHjEtyMD
graphqlclient.min.jssha384-q7VQ1gNbPNMcNlTf5DovCl2miuX83bCJE1QfvA/lINSr8HgkmpFatKc1AyClqpn1
httpclient.debug.min.jssha384-jfv7OWFmlZf3IffZxI3T3TU2exyL7CHtTeuxWlBqhCar/qbP5Ijocq24afd2tjX3
httpclient.jssha384-yR9gqLTiwIaK+Sa4TmWqwx5Kkq9rQxU4DMnntqG3e2vC0uRk4q6M9YKKcv6x0DbG
httpclient.min.jssha384-pd2+DUenGvN/Bv//mE0KmWgfcvoco7fnAWkuvBLX9gVsTW53obBwa6zJqoaJbQ4+
modulemetadata.debug.min.jssha384-8gyPdsFurAGmAWhM1S2kXpj5HcWKBlLnilTocD13lLUxshbJ1ZbNlWI4VF0TMjRZ
modulemetadata.jssha384-J2m8lL/BO1y507h40GTk8IfAnObBhGdCNU+rphbkg8hYmPg149vvOa69nOKIFZNt
modulemetadata.min.jssha384-GQ8XeSs7OpBRN3FJ92xdSbzzkwCXu0YzNuyzwymjmc33fp+fa1B8hdw1PliQFHO+
multiplexedtransport.debug.min.jssha384-u/9ymkBAg0A80tTeTLprEWvpzLhwoK6yS6qzynIjfskKOZvUN/AF0wDhj2oRbvHE
multiplexedtransport.jssha384-RH3HmN1SRp9V5u9asQAGsAbn5n6dwJdYZYv+wh+3m6ekoMa4K9GAmOmIE2QEvHB+
multiplexedtransport.min.jssha384-uCe51wN/LYEJEXnAjsD4RHsdJTQSOGRziNoFjyOeJfAE/3aHuYqMeDIWSgfXaEAQ
replay-canvas.debug.min.jssha384-V3w67RoUHHCPpQIkHo4IY4ObjJjPvvg11r2myIjmTLRII711fx4UeG9kxWKe80F4
replay-canvas.jssha384-y1AG2xk+e0HYFc9QEQlLeZEa3HYPq78AWlOJOn5JTPBsOMXclJV2zHDbeQCDajhf
replay-canvas.min.jssha384-PiZgmtnKYwXSz9mXhOCFK7AE9PHxriAhze6Oh+EAtDRNak/bwE6xwY5urW3rjtQi
replay.debug.min.jssha384-RuKipArXt7BUkM7pxce9pyNhJ9cNDWhi4cj7/qXHyQwZBwN38JkC1bFKKVL28xP/
replay.jssha384-iGsp2ZV+WZaK/GtbLbn7+n0/KxY5+2tQifQ7hKLI0W+baFkFutZbx0ey9HDh+n7s
replay.min.jssha384-EKQ0wFqErefPHwrMqbtRz+XSsGzSy1wmCJSEDAqkj5ESf2AQEWRTvdBLXyUFZFR/
reportingobserver.debug.min.jssha384-T7Q7V39Hh9Uz3nKFRfAxu6QZVG7IRfCfaf+Ua9xef9el4eD/kXtcyIOCA+M+SYmQ
reportingobserver.jssha384-2o5g367+X+EPGOLYOyrMuOKbZzazgU1YzbzH0nMgeZDlcNRBMu9fhoWqtNxroi5a
reportingobserver.min.jssha384-cCUYvgpLhg0aC2HoIuiDXBG+JFE4AEk11XMGaNy1Wik6P/UT6d6FLegWb5OUYmJX
rewriteframes.debug.min.jssha384-4zdYxp44lIBP00iT9zbh1AULcZfWoVCJOpPHiZw3bSkTIHLmzXhGSfsZoIJ3SSNU
rewriteframes.jssha384-ZF/OH0dj4hBqMJjTmR3WUvpFvCB1bQBhtRpHCuaHw4qW35XEnJfjm09V8Y+bpomk
rewriteframes.min.jssha384-wDJoFZr2BkO76K1sUbrDPlxGUu9NpOasUJqp3yP3arldJDbuEetcJNmEaKZiuRT8
spotlight.debug.min.jssha384-OZfCrMuv9x54UScKixO8NH8ud6gAwOKEBNN9gc/6ACUEmqAx8tHMS8/2P9nW057O
spotlight.jssha384-k8kWYI6k4MOJFfMlnLm76WugBAIoJJc2rgQA7Ckt8cycJ/olHuNnajUWoDKtn67i
spotlight.min.jssha384-I8TAQ+lDmaAJOh6IVK2YmB9zf+/hCc22YvMp+faH/3R9RQdRF/RvMFc+2sBSN758

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