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 disabled.

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.34.0/bundle.tracing.min.js"
  integrity="sha384-cRQDJUZkpn4UvmWYrVsTWGTyulY9B4H5Tp2s75ZVjkIAuu1TIxzabF3TiyubOsQ8"
  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.34.0/bundle.tracing.replay.min.js"
  integrity="sha384-gHcGsjf15+oILUd/CRoMCbLIjr/uvLY+dIT3+olcPVFtghwoWJjtIHCrDMaOkdbN"
  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.34.0/bundle.replay.min.js"
  integrity="sha384-lZ1G75zByMnlFeZydgHd7zf/yOUL0qCVrb20JP6GNSPaSDKnRCOcJp1V1WExXX4b"
  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.34.0/bundle.min.js"
  integrity="sha384-53P6MMkVn0DDaKYIzeUJsL4myy0ml1QVsErYuIdCyys2xCGn9wplX9qhVMmqnl/B"
  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-iCTRUPGJvkQ8Q1aYdDIlP98oCfQOCJ25xfO3cO4LXCQ+OhkqEJWsYX6DV5+lCUiD
browserprofiling.jssha384-Lz+Xh/6/pJuvt20nsV+zp5WgIsz/ZKNO+3A3JuOC3LJCt2fRwubiQUduZ61bITLh
browserprofiling.min.jssha384-oZFsVn/WWk2+NgfF20lCSg3lxXhIheGINWu4wU5PlPFLsvtnYgb67oQJNK8V8ePT
bundle.debug.min.jssha384-wP0DyJf7t+Jyy8V9+bFN/Yx+4R8G1MxnmgUXnATGskc1shnB+2vlQ3IdaVQn3gPs
bundle.feedback.debug.min.jssha384-BRKtjCSbYXL2BSE2ElBw2AIhpvU/CJ98RVo0nzWCue5H75oqzdiIJK2U5uMe7Svg
bundle.feedback.jssha384-5JaN8zWwBndaK8UtsvXKo4ddpvypM9zqe/NlLr7wy+Ai/smR0cpau2E/lch9TTlq
bundle.feedback.min.jssha384-qRduY2l3nrx1DsCSB4o7+GHyIH+27emZUmUEmnQGStcvJVX90kA2I4zIrFphPKbF
bundle.jssha384-9loQTJO8n+yNBQYy43F66+09RFLSiu5JS9cXuLA0AmfP7fFhHtXihL7cTkG7FL1P
bundle.min.jssha384-vmTmP61LRKEzeykdzQ7AmLl9d/+KvxUT05idmF2ovM/Ts94h2vwf4eL0+HB1fHXi
bundle.replay.debug.min.jssha384-3qxH6P2C2g+aQHlBy9ueH9fN6vkoUaa+4pZcnS9f+sA82f3VOcm73yXh1uJJDnfo
bundle.replay.jssha384-6kEaf3xKxSUp/EbWnmBLGiloXNgJ7BGzbHP8YhRz5/T+OUbOhrcNCUvsQUADdiu6
bundle.replay.min.jssha384-qIhwMyhBKqnIDj+6aYZB+ka5U2Ls9TRRhWh2r9sXTUA/V9oi/xdSHeOyffNoc07G
bundle.tracing.debug.min.jssha384-ifU0DzS33Q0TuJr3FQ4Xw1H3bY7HQcuRHWh2eTuV0fFhUlfmSHFs34ZXxiUVr73m
bundle.tracing.jssha384-yHTRcUHzoUjBR1GFy3VNabD9GmjW3CpC+3l1Rc+c651E3TH4YxWBSTckyDx9M3RF
bundle.tracing.min.jssha384-Hd/ws+6fe2y6enokI2C4GdzKvNq4MZ0kq3v9oZ6MrVHjJ695TroI7du+vQbIJenc
bundle.tracing.replay.debug.min.jssha384-9N+seU3cMHKKvQ2sBQLEO9cC3NC3jbmcPEBw2vuZPvHMLPmbTm4ZOY8vgc5NIwAx
bundle.tracing.replay.feedback.debug.min.jssha384-RB4EPK5aYSGKqMbWp5qdkAK4uSQCwBDHo5RRIsuyMMfBocPk+ARIx8rt5jDLmQ1p
bundle.tracing.replay.feedback.jssha384-fgvmuJuHseyY84jL1KHxCV3aaY67pmxf3rB6ND78La/7P0/vBAktILfbmuz6nGoq
bundle.tracing.replay.feedback.min.jssha384-7xh6tVgYJSND0rAynlEs4kvXYa+wezjm0Jtb0jzpNupY8hQK31gsEGAkxzBEY93p
bundle.tracing.replay.jssha384-tN38QGOQKwl3EQ8hinJqP+wm0TUnKRUcDJPrg0YqY5laiW8hW3Ipi4veUgxVQqg+
bundle.tracing.replay.min.jssha384-1a6V5P+uIuV3Jisiah+MXF6zKwjN8bQXKD/DYsw5RJ8SJzNBX9C6dRSYPcNQFh4J
captureconsole.debug.min.jssha384-5c2V9fzX5pKMB+CeskqFMdcxfBlrWUfJ+NeN5lt2+RhrSZlabRTOw6x6Vx8JVwaU
captureconsole.jssha384-XU6JIrk1Hp4etpK7Jga19q/nQHCZi2bXH146eGd8ZlRsx0T/T+/xJwdnutaAPZCu
captureconsole.min.jssha384-9qXU+LaUUqx/iX261b4B/9RTglTKSNh6rf+XdFazmSOHsauShcb1m/Y/9DwTcJKE
contextlines.debug.min.jssha384-8J0dXCaGCOwcQZUP7UzvlMCvulT9h36LQNeTZ33qTEWgxrDeExRhO12Niczosq9L
contextlines.jssha384-tt/fGtjTEL5rO5ksyWLdbB+qIu03+3tns4lyNkU+CP9hozJoThAbe2ogoCdOoRPn
contextlines.min.jssha384-gC+Fpu0o/7paqLII/NOky2fj+WUdDCuTjU53W1BC6wfVYxcxijZRmNi3kN9/VrLg
dedupe.debug.min.jssha384-GDjph1CODX5O1qdz0M1v7u45hKjjkh0bQ/xN+x42egXkamQdemM/Pph8b89ugwWo
dedupe.jssha384-2SG46KVCpvltD40Tw7qdBX0oM3Xm5Qs2KgoUG3/5Z5btlvLy7CtiRm5+2YWa/Wm0
dedupe.min.jssha384-8jqKB8Ha6od5cwlwSKJTECLtly5PNWtVr/bSNqfmfI86mOSEnf7hW0sh2LbdeYe3
extraerrordata.debug.min.jssha384-R0Nvg+jBZKgXO0nCaH6BoizkFocBz+43lp9TZq39hAn1PGalxC/KfWAnJhu8wRqu
extraerrordata.jssha384-t/gBvP4OLQS39CoiCA/piO7xR7/Uh0y4U319GDazLIW2YVoEZORFxC924vQn1L5H
extraerrordata.min.jssha384-NiCpVPagvesMjM9t/4dezDyqUlVbOl35IQKQU8kCr/3hsy/k6hn1qRz1oUzGvqJf
feedback-modal.debug.min.jssha384-P5DtSKjGlSUV71nlIpk4kOV1wbjABEg3AwpnC0jXTp3sgFIeRRgho8GkocpHPk83
feedback-modal.jssha384-7jcn4smP8IKCDwaf4ObwJhNRI5CkWQrcKfCJnm8Tl5rQcf73WPFYmbofESMn3ZCi
feedback-modal.min.jssha384-lSU0H3WtXcugekU0T/hSNGDIclX8o3Ked2tkYPYmoxk4UATZk18VKTl2ufM738Ef
feedback-screenshot.debug.min.jssha384-bC9pByVhHqa3aBM3qD/1pWLovFCPnzPVkVkC+7+9iSA/SSWTd03tVpH0/IJCbKH9
feedback-screenshot.jssha384-jVblfPuzSW63uKhu0hYrvqheI7OxeEnEr9Gvyq3HfbpezNlcsgxDn0wH3LNZ7Czu
feedback-screenshot.min.jssha384-pzVgHKgDPJjjovoF83ssKMJQ7IfnGfwlQmMifukJezhkY/S0mLrDH7dzsCL/Z2Vb
feedback.debug.min.jssha384-dv8yZS/SEzi0L7NWHNS+kra6KJXykBS5DLH9dwETO4ZpgV5jM8ZIYP+C4dNde0Rz
feedback.jssha384-t8Z/2JLaeSXgvtxNc/9HmIjChbEA1cEz3zd0yoh6eNoKdgn/hB14kb2sYvMBN8o1
feedback.min.jssha384-eDtzV56pQ7EvQQlZpL3wzyK/0hFYnkGUZ0Lq4kgsqKmlgLiWLW73JYQ2l01TkRru
graphqlclient.debug.min.jssha384-j+qpDGNFZhsVubplz//znLt1L217cwJrnMtES94lSTlpWg6mO7Uk++tmKWrIFSDp
graphqlclient.jssha384-X+ZQFFzt1INQ16fXpS2ExMwjcYyfa4evtYMPQiNW9vjgq3IGJQp8gQg4PZ7o10CQ
graphqlclient.min.jssha384-VWtIsg7mwDici/B9XVjIo7IbiTT8XOpPT8FUFUvFDQ1yRKxRRN4yv7IeOIRReTXf
httpclient.debug.min.jssha384-MGWkK5mkIapT3R2vJ6XpJ7l3J8A/v9HPTP0lhJc3v0BAmehvKF5Wjf+sTEdI0B+U
httpclient.jssha384-IMLoFsWlDYzQteBcsg3cVMe9flhdvPkDfSEKGTPTkg7Iwql/oY1rVVqcNN9ta5VG
httpclient.min.jssha384-RHi2YqMY0JqqycgGcZGyk9s3yjy3sXLRKsbCACQFT5Kxjgu+Q79s/X5jfsgIBONW
modulemetadata.debug.min.jssha384-a3AqBfEFCslgPtaBUPZ/PtTMj8dAVlUgzuUI1/b2YaHcc9KU9l3lrbcpqa7RXnQA
modulemetadata.jssha384-ikMddihiz4qzQk9Uy9qsCJgeVhn2mZDrj9Ybsyf/MN8pDLv263F0LDRbunkuIuNb
modulemetadata.min.jssha384-AS7s3udinz9tgVHvc7VCdrhj9xR9nsb8AliRnIEpiRL8635wF0lDOI8ZM+YCPnAP
multiplexedtransport.debug.min.jssha384-iar49VR789Rq3aZVbUvyACFMwhhd4n5XWCMncWkfY52LIxxf3vO3pKrX0HPPX9/e
multiplexedtransport.jssha384-KfY0gwTLkE8FcEojOFF/VTH9uG0TNWYT+VPJyBuW22CeMggR+6V09w1ql7PDdgJf
multiplexedtransport.min.jssha384-pvChKPnMROTyFNYlUpAv+hZr5qxMfslDMd7THRIiJkYpOmQ0YO6JeTkpuXjJByyZ
replay-canvas.debug.min.jssha384-MzsPE4EX+xfmQoW2KGB6ZKp4V8OfQ5J89CrW2PCES3lKyk4Gt/Kqemc8MsqkBIa6
replay-canvas.jssha384-FJ5/nEeHy16a/ORAlCCmzkmfwFeipzZbnulVuIgJgBDallOpbsaWu6RB5NkK/86i
replay-canvas.min.jssha384-VhMhN8kiolriPpHl8qXfgFJC4IJ4/hJvhgT1eS7Leo52yOrNgEwfXe8qKpLP0fKJ
replay.debug.min.jssha384-KnbXrGAR6lecMgONF/uAnG+Qx3A0Y/CUvoInGcIGByfDm+X5HfHVvNex3WuQvGEH
replay.jssha384-1jnsBg7exT7DuenUkuE3DMQq+pd8cGuB8JCg4p3Y30vyR7QJa07t0DwGAjXKzYYT
replay.min.jssha384-oQFQCfpcJv1lSENFDa6xDomp4yW3Mnoq90xzn2KlTEiuWIdjl8Ytnasxi2mJ31ia
reportingobserver.debug.min.jssha384-YQO7UCGGJoan3LXqIz4WjTwZdOscS72Q2hHCbOmsQ+9ZYky5oT1+oFUSFlGFUvYN
reportingobserver.jssha384-wbq4mpOE2xKXbnn1icEpmxnM6oLwnd99mhKHSV6LrjkZscaIgyQHrQjQTDZMOAsk
reportingobserver.min.jssha384-vPnWUo/uryfh3lKYaTtMrNg+6kgFmtgJIVhA+qdJD/Xxmey1VAtyMduCpmxR0+BI
rewriteframes.debug.min.jssha384-7CeJac76SNUDfPS4fm9PH2f9y9Y17tfG/5mIhB96/znFR4OdxejDXkX3i2BZB+58
rewriteframes.jssha384-8kcoRckKcA3V4KMWuHIYRdCZTwhmsC6Dag5z36U7mvaDaJuIHrec6FLgazmtnGDy
rewriteframes.min.jssha384-wdJJ9x6+loJtZIwxOQ23ljK5eoa34AKTGIJZ1k8xVKnMRoup1Vgg/NRjnZ0JZE6L
spotlight.debug.min.jssha384-T5g8GoYUuIoREZGPX2BVnbiM++ejCG9oxNeSSTC0jK3+mIKBXr5kD74rf9zqGIc0
spotlight.jssha384-JyymrkJ97Nn0/WW1P84O8N7kFkfHXQ7WiG5lBfRCmhxuKyuJZuJQ9LEPLqQ4pBS0
spotlight.min.jssha384-jU5Vee/gwFGV4bG9lUGBfDm4pLdsAVOAziuGnmzV57ZgBc+/TLc4/pRtJ328pku8

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