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/9.15.0/bundle.tracing.min.js"
  integrity="sha384-JkW4Cl7reu2u03OMTIA3UChJz7GFGmjENnwgiYErKFKWePqBOXKePX38NKL//bzh"
  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.15.0/bundle.tracing.replay.min.js"
  integrity="sha384-mVK0ho2J/fGe7bx2pETgMzPCXcRudC+jJ90X9AsbIXv/MEw/lQZBb0XxlX3EBHyO"
  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.15.0/bundle.replay.min.js"
  integrity="sha384-Oga6v5QleFtkIvkUeujPxkllBiOc6G4eOPvRWGo80buOtgLhjgyN+vUalN/4ag+a"
  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.15.0/bundle.min.js"
  integrity="sha384-hB6ZL+M31YYXiO0JkWjgQlK7NyVfq6wKQiHLIbfSVKhgw76OaieYGIsZ9oSS4YbA"
  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-MIKOd5hWk3wsp9AcPYrLSuBhnvC2Acyb88pHXNZOuLWkphSbtmCLwKAW1AFkMK0E
browserprofiling.jssha384-6OY7Vue6IJyyNqRVqB2Q9Zz2n4QXZf+a3sphkYC8F9kTlwVd4BHvDmh3qqHwuFjf
browserprofiling.min.jssha384-QZINVt7Ygb8DG6jcYxjtVeI9z8tOWh67q9CG4BRpoVGc4yUBFPW5flVvdubavFN/
bundle.debug.min.jssha384-j3bYLAgeu7D0Gr+mOQYr0Mr2P6HMXabThr+CdxukSSJ+I4vfLJgilvwKG8z3wjDy
bundle.feedback.debug.min.jssha384-fTfDl+jTRM7LGrzbL65FbEOCPpZM9lYPAqcgt0Il5zSqgHptwNJtgl2VPMFdZaq8
bundle.feedback.jssha384-icI5TVs8VZrKtH0hie02niACQk4FQWh8S5mEizVhGwkGQ1MJ4R9Nv3GFVIkfIc0F
bundle.feedback.min.jssha384-XlyYmjn5Wrwzf4ziC8aXrGnP1s5CXYl/j9VL9ajew8xaoWo3IiIKhMbqUzYpFIz0
bundle.jssha384-pLBmihhqm4uQOnHeTbLlwuzNeFu6iPUHQv8FkQCfFd/iAFWXeocJZbB0CURvXJeE
bundle.min.jssha384-hB6ZL+M31YYXiO0JkWjgQlK7NyVfq6wKQiHLIbfSVKhgw76OaieYGIsZ9oSS4YbA
bundle.replay.debug.min.jssha384-RaOx1SiqzVd5ansdb2FQmKftfcYwbNAze763JCJNCUCZhJjFvp7bviee8TO1Yeha
bundle.replay.jssha384-mHjZWlnZtYAoMNYaBkwnydAW81GO9a2HWqfw2aXIVhAdra7stcfaHPt2wo0sL7vC
bundle.replay.min.jssha384-Oga6v5QleFtkIvkUeujPxkllBiOc6G4eOPvRWGo80buOtgLhjgyN+vUalN/4ag+a
bundle.tracing.debug.min.jssha384-v2XSBEZOCvYywpIM6MmDlul+YoRDHe/9bMeQQEN0ZqXO3GQFF7xWF0p1YkqRQOoM
bundle.tracing.jssha384-Heg1KyuNs5s4LByqK4G+YXtEkU53WeGBOS+lj+VRcf22Gph2ve0vjheA8sMac5q9
bundle.tracing.min.jssha384-JkW4Cl7reu2u03OMTIA3UChJz7GFGmjENnwgiYErKFKWePqBOXKePX38NKL//bzh
bundle.tracing.replay.debug.min.jssha384-wBF9yybNzAhcmXyoNr5waWfsbR4W73YLvqdCtFs5ZSQP+ISlZkDP+DomhBLHSePg
bundle.tracing.replay.feedback.debug.min.jssha384-jzsqsELnN1wECefJIP2LQCNR0TFobe0GJ1/DeSo2yUOtfZtEyiiiBP8s2KcrBUnY
bundle.tracing.replay.feedback.jssha384-WdYIPNUHKrmYVm8omLSz50YX/ohhv40Y7I/9sbNwkYYee3nGyAbVZGKG9WXMQ7jB
bundle.tracing.replay.feedback.min.jssha384-AhawK3hQciRdKWORa5xThqb+vfbVlUYTfBM9zlBkQA4URPW2+Tku/ed+Hh+ZiEyX
bundle.tracing.replay.jssha384-8oxOWf6EK2RphTipA39SQx4b2IF8PymozQvRlpa1qy7EuxHNzKeJL6rDXwiL9RWw
bundle.tracing.replay.min.jssha384-mVK0ho2J/fGe7bx2pETgMzPCXcRudC+jJ90X9AsbIXv/MEw/lQZBb0XxlX3EBHyO
captureconsole.debug.min.jssha384-sPoGg2NJotBh5NYopPTHkCw/U8/mc7johARrjNf8K7Kni8deFK1PRGu/rDI25PLd
captureconsole.jssha384-Xv8PLPsoOG8R6FwTvffMNatVtI3Qvd2Ckv5g6Yi1eAU4LOOv3dODkJxLC+UQNxhV
captureconsole.min.jssha384-BBCr5A8UXFKOe7bfUz22KDDOdsFRLZc1i9Z0CBSCbz8B9s/spZ5yHcAqsZUrIb/N
contextlines.debug.min.jssha384-3DqV3o78G5+UkDc+ibNXJJN75hPoEqTea2Mq6m1TdcU4GrHzsomksYm9dhWcx/e1
contextlines.jssha384-NwjmVjBwUqe2fp6Ez5oVlaLKcVK6FND1tZ8PED7s6trIF7d2kDbj4mOt5MKCL+Ms
contextlines.min.jssha384-2fBYM7IbCo7chxMi3flOd/2w+IbzuPHFw9/NqGNVeqMu2RwD4xfuv4c8TX7THO1+
dedupe.debug.min.jssha384-yQej06AOqwDaJC1AAa0F28S7MAfkeHcO+VJNc4R+xy1T046PWKwyxGWDaawd5Dk8
dedupe.jssha384-jQ5groqZHO1opFDnJw1XA+UDX4k1Kb7gcdwcC4J0yZBMo1fC7iOQqixaVDJH5qtZ
dedupe.min.jssha384-Rw+lbw9K1AYjhiysaHXYqg4akqAY7J7RE1y+IwjnyWl0g9pKYz2Ze0veYCU6lZuF
extraerrordata.debug.min.jssha384-MvK2R4FZbJcyQwczwNGRbTi4vaS5lNS6lD7OOSyCzw+647GG7RzJaPOaZPGeb1/h
extraerrordata.jssha384-XqJpj299GGFDG/hPCPfPlHX7fvu8NB9cOgTQAyjMmci2W2VMd6mEVmzFXyA0qMur
extraerrordata.min.jssha384-NTQKXdSwU9V3+RJUxVOPfZ/RWL4rmk69bBeHw1Kz0xHW0/zfDQWrxhh0sfzgEhvQ
feedback-modal.debug.min.jssha384-NNrMS26muthdkWiF6Hi+yvy0hD5J6tkzVVq+ufXhO/l7X1sG/Xf2MLGzPrZomg+C
feedback-modal.jssha384-TmXTT28ySP6IvqJvHQCqMpNjM0UoQf4ycAk64lLyrvgxOprMMTBEaD9cClDG98ok
feedback-modal.min.jssha384-udd42oArNg1E0qr6zjeRZWIjOSv4bU1YByZK5O1o50tATRG1W9cDJRunMMvHvCPJ
feedback-screenshot.debug.min.jssha384-FGXb0BdDiMBfs+RJtO4A2iMnTScPntAb6S4K22Z1jIZQUZ7g63vE/nBvPId17mba
feedback-screenshot.jssha384-IA4OcyrDcSjSscGI8oxyILXGznCS55GKe7lwYO1KuJcGxADioQ4eUf3P4WEnf3LP
feedback-screenshot.min.jssha384-1PW1ULOmJRwp+kTLCFRvFK8rr2s1P5RWER75TkZiQMhgKQaiFDGWJntc94DiM0vA
feedback.debug.min.jssha384-a7VoXpBv6Ywks0O2Ki4Qash2QyNBMpY+q0fM5hPFyJtSAKVXG49ZMTEqKZGYgnzo
feedback.jssha384-gwu58syqtBO9EVbpJ1mKEfjfIOZZz7jWuLgLmC1WcexhG67R9lEITaqzozS2PS3t
feedback.min.jssha384-8oreGMx/B4eXb919hf7oYcLT7bJ6l3eT9FXjLKA9WbFE0cOGL0tGk2hA9h8ku16F
graphqlclient.debug.min.jssha384-eKOFxhZgeRocdRK8BJh7rfmpjKEsvHflcGSdM8i4PYF2+XYTjH646mzWkoikGfr6
graphqlclient.jssha384-YtcQ8bTdld9ZUIdaj6Fq6IW3wbaZyAPRPZCZktWaNCBiNnEO8mY8nu3bGf3xjjdD
graphqlclient.min.jssha384-dcH10RJqaXOFNJmEOXyjAgZVBA/lPw8YDH5S6Uk4WzB2CFgF4zt2TS8Wr9+4ct69
httpclient.debug.min.jssha384-WeMEzbzL9oyCj2cMRUMk51iIu+qEkf8eOMbWqINyatjTqi8l4BZRCYBcyxrXRa7W
httpclient.jssha384-WgW78pCti60VxXeFZtd0QIvSlp1UcKdoCzCs06M2OAzqhykUJdBuXZ+hT/IHHgwk
httpclient.min.jssha384-Tgucc2qNACPytPeIDhCboBGFNDTsaVCj3Q/ysYUUgMh54/O9VYahMcmvO8QtxjhR
modulemetadata.debug.min.jssha384-qxVXb0SL0Ffj6S64MTLaF90ouztOVVozrQy3cy4wI2hIP6JLhgdF3VaO54qEshNm
modulemetadata.jssha384-A+MzPMoGNApgLGoJ0Q1SJcdd4MRJgEk4v1HZiUidxxEtGKs3S+dHQ99bTBh5XUBJ
modulemetadata.min.jssha384-wgOA6zjLL4FZ867g4u2D8idGB0jNa6VIFnweZufscbeQdzD7XkJgE8ciZ2VJo7kI
multiplexedtransport.debug.min.jssha384-ODXxs1VHpn4GJycYJ3/SpQw70WRoqcy/xPBcZVVrn4BxZ6cp1P8QKczid+FZD7l1
multiplexedtransport.jssha384-S6zpSb6qHlm0lIcj82yTdvaNx0o47QWC4Rr4Qw2wGUEKA0bG+Add9SIWz/rq9nVP
multiplexedtransport.min.jssha384-GdgZUCtIg9y16bQdAr5jVe+yxUiAEboCiDa3On4a3feXzjtUB47eH2LFJ2CSMdFM
replay-canvas.debug.min.jssha384-pbGKcGRdYWb1123IVoe+G+gV9TVznJKQtjd/135qxu8nJi2/865NVp/fiUc4wGjX
replay-canvas.jssha384-sG4VrqRNek1mo1bX+li6sSFZLC85oBoX1bprPRx4Zlji7JeIYZ46qe+j4JOt16cj
replay-canvas.min.jssha384-5mOVM0tQaVz0wA7DIuzVeC6hQIM9yWQsAqlqJUMdTCXkgb/wbVNk6LBsHfB1unOj
replay.debug.min.jssha384-80gbeBmgnvYK62bKT/XdMOhGBsgNpfc1Aw7CZiswIeTrSWaEnmnX89DOFvRxULju
replay.jssha384-GaVE/hFwexG/29J+UFf/p46/WTQGHSK8QAnOlOyGVWza1Nd+70Y/lwt6aEBJkb/w
replay.min.jssha384-PzWoMRX3aKv3u/QBMZ2Mxlt8gVfpitGGIj1jt7SEh4rCYBLAHx5l0eynSLUC4NI3
reportingobserver.debug.min.jssha384-7M4bJ7/Y7p+5cXm3bnCfKDY3pShYM6XWnyKj6BGKP+AZX4woy9ViPaeToFWUnDJO
reportingobserver.jssha384-q90TNvWA41DOIE1vg6Q3TToJ1MxGT1ThWvNjIMvT9mRbi8wcccChDknMRqu6yUhB
reportingobserver.min.jssha384-9q07bEdWuBYSbSyfCKlpOX6Jl5UNO9m/W/UOJO3yFn7hyR3VYrmHZE/B86zPbHEO
rewriteframes.debug.min.jssha384-Rc6fE89j5H4p8ckPbR4odgdp0v7aEj/NJTPFouGafwI1rLCOPG1oIb4rWZqJVIVG
rewriteframes.jssha384-0Q0kgwU8D91sXyxf4gyQNu7nu1FWacFBLLa4IoOt2S6C/3U+wRWw3i+PqeSECknE
rewriteframes.min.jssha384-KgdJNphZu9S7UcVQKQ7MdIb3l7NSa2Hksl3tK8C34qUJcGzlewQwTx1fdlis/3UQ
spotlight.debug.min.jssha384-8YW33uSM6sWo8hE0lIOgdU1aO62i+wHYlTKCivON8CU59CatItw+uv5bsAr5tFw+
spotlight.jssha384-j59q8XlotG9/G4KWt6CRCK4dbSDwgZdwQsIom0W2/Mt+1wUdYS9MyU8R1/XK+G8u
spotlight.min.jssha384-fFZwJ2mBbNXjSGfLEzUe2RQueEwfVotjUBE0YXH8fPXQlZXFQQH8Ya3Z30lmISJX

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