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.24.0/bundle.tracing.min.js"
  integrity="sha384-P6BW8ny9Eu/AChd2kMRMyNVu2BXt7RTVnDd94JusMOLBo1mzW2xXLg/lBd12lLYj"
  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.24.0/bundle.tracing.replay.min.js"
  integrity="sha384-lfgUoJWOpm4pRiZj2+0zpFANF1gGZ0ReIRPDjQA1S7iaZrim+hj2CzU5hzwRdf/Z"
  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.24.0/bundle.replay.min.js"
  integrity="sha384-UH+N6yYMkRr+23wv9TR3MwIZOTAF5Ffj4GIfbIUlfloKAq44RCcN/Y2uVO/nSDEt"
  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.24.0/bundle.min.js"
  integrity="sha384-T63GOHP8LEJE5VrLKAIMFxEzrp5X1f2mpvyASolmbnLUW7RQj4hIP+HyaX7GpiJ7"
  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-PhY4braAPx/p+rHy1nkhSqr+373Zs/P/IqQFssyOEf1ylHpmxBnpmwp10+YQju8Z
browserprofiling.jssha384-s2qKdJUsm/r5Euyki7yyTzXQ8W5BA8RqMqPVdSPV6BUzQGkIsmebpp9Lp+EjOZfz
browserprofiling.min.jssha384-gwObs/6ExUnS8IqYl6L33Ec4B6uHppp5PD6xg1vP9jfkzgRD+kNEY9TUNLYNdPq5
bundle.debug.min.jssha384-InGJvyhMeyeHi9OQtPlMfPdWMyKkCBfh//gCYakspTYMJBG7WGKgIRJEbhy/iVZ/
bundle.feedback.debug.min.jssha384-LqopZxEp+i4hPFqyvqqDcwF9EXuh1F53g/BmwQM57zFPQwDWr97HSh/hvcvm9lXS
bundle.feedback.jssha384-cNWkk0JwSiOfF34N+DnMcwjCIdqmw0+Fei5inwi5/00btUahzjxbnxXlf9OZlqat
bundle.feedback.min.jssha384-pD7fKt/KwzcOsjz7X2xhRIWm/IpCXN/3HzY+utOiNysGlBfvPg7LqE3gvqAHbO6f
bundle.jssha384-OEcpQIIunMqJB+k+F7SKSP2P/OzRgWBR8zjhOArlX7rjV8Ar2sVAq3IU5CxO6+yv
bundle.min.jssha384-T63GOHP8LEJE5VrLKAIMFxEzrp5X1f2mpvyASolmbnLUW7RQj4hIP+HyaX7GpiJ7
bundle.replay.debug.min.jssha384-gpc8d00qDC828AwgCYFlRL3OTqrRGNf3+wJeP5qzZch7E4Vz2lyAcTG/N/ZzTQqL
bundle.replay.jssha384-wUT4H378mc/IBFz2h0hE0g2p4Fb9ANFHukai13t2zPSymNldPcThygWw514lp7VY
bundle.replay.min.jssha384-UH+N6yYMkRr+23wv9TR3MwIZOTAF5Ffj4GIfbIUlfloKAq44RCcN/Y2uVO/nSDEt
bundle.tracing.debug.min.jssha384-SYoKJWuwK8JaIKLgqiIS8bWJ4apM5j+k/TUgNZRux5+Js08z/3K/FT6HSOFhLVat
bundle.tracing.jssha384-oTgKnP408CKjY/Tfhel+b8wgngV3tl6jTlT75skeJe55uUJ7Y/dojNSD190FB2/n
bundle.tracing.min.jssha384-P6BW8ny9Eu/AChd2kMRMyNVu2BXt7RTVnDd94JusMOLBo1mzW2xXLg/lBd12lLYj
bundle.tracing.replay.debug.min.jssha384-FAPrVv2vpRKGItLvcrDLhzcFwRh+7KEgGXnbc/vLP6xJ4WvBPoHV+d7Q/5YqrT4O
bundle.tracing.replay.feedback.debug.min.jssha384-7BCvlk5As5M5xUWZo+fXyPoDMO/D7ZQ7bGkmi5b4LeaJyTKPW7QxUmir4Xxqcs3f
bundle.tracing.replay.feedback.jssha384-3POA0eH/NUc290sPgCx27dZFZrok3VUdTffK/iW0rWR3af344BUT+wMzoANsMEKg
bundle.tracing.replay.feedback.min.jssha384-xkJ/8R8kymm+6o0kknkD8iccAtPGQEZlEWEwUvy5pHYO49OnHj9nkcWhbk2CmIi+
bundle.tracing.replay.jssha384-8qLDDh79PWSSJAH4vJAkHviavpHW5T+0USM/uQz2I9G7YAYqjYSwRK4/m2FBAl0w
bundle.tracing.replay.min.jssha384-lfgUoJWOpm4pRiZj2+0zpFANF1gGZ0ReIRPDjQA1S7iaZrim+hj2CzU5hzwRdf/Z
captureconsole.debug.min.jssha384-oNO+0JCuzW71QZn2G6pkoiXTuuiOeyoxe1RgHCt3ZaVXtt0Bzcn2hRVl4DNPP5XO
captureconsole.jssha384-GCpk8wSjN75hVfswyo2VcJprBxMiP+5HqAaUPdboRo+oOOiv62CopmBf9CKkl5A/
captureconsole.min.jssha384-y6xogtt8M2twDezQgOfAijkyqrpmkY2weAlQt3gmGXLT9TqjKPqmAKRDWC3iiqj0
contextlines.debug.min.jssha384-9q3OSmuntEiDNLyabfVg4/BaLM+v/zpidpFqCSjmQ/X+42boNENDNWq5FBtoWROc
contextlines.jssha384-BLhxoGFG7tTkW41cpmoukdv4p0ncBRPJb6NpI8VR0+nqoQLTKjFoY4A7Y8ZXfsrN
contextlines.min.jssha384-FvMLh577MAVMo2DPByfBipzCoLeobouHLbPkQFDoK8NjG0RFKiUixwfI7X+UzBlJ
dedupe.debug.min.jssha384-VzN9zMWi5A2ja29/Pzi+zWCe9Zr0k42j/SQTEubcxu0WDz4n1msZVenMrMFi3lS+
dedupe.jssha384-nZaa3l5ubNbIaqxYgq4TR+bCpSYs7tIPbVshpQOh6S1Vd5bjvTHStAMIb3IPG+pF
dedupe.min.jssha384-sS4JC/JR/36dUQKYuXpBBvGOVmicpBpnQ4B2sCcuUoiNKKwBlgZxS94AePLIiRub
extraerrordata.debug.min.jssha384-bKr6sdMMrHyBjGJ7oLSTdtYvPPjc5YzAP5/EVGI8fIuKSjJ8Su0ZIfdrMp/QaMgB
extraerrordata.jssha384-dsVBaxrdFsXoSyxYTNX1n++RAklCDoyLfxwgjZy3mFbANvLfg5ASL0dOmWUWjehH
extraerrordata.min.jssha384-VPcwokr2Upsp1jiR7qiEtyWfXRndMQ0LJ4+ikBOqn/AEWCIQdidvqQIOQhLJoTn3
feedback-modal.debug.min.jssha384-DqJR0ugfp1c0xky8EjnQ3r8zDCwiR2W+0de0aSuKungI8zNn24AVedqBHQ790Xef
feedback-modal.jssha384-wYAlCMeGzn0dN2FwUiQ07DJJ4gfpFm53lDU5vslFlbKGHItR7Tz15RXPmEaDUMTk
feedback-modal.min.jssha384-SoIdnl+IT6f4YV70ER5EMjiHONkhSY1ytaaqK9ZaIGpGAD5Lg5W7RDgQTtFdlFsZ
feedback-screenshot.debug.min.jssha384-kUpz3+CUyQWVCtmJxQL+GDpgSKHA/5O6+0RPsGzA1drwfa5S3gpdCcuRZ1eZZLC/
feedback-screenshot.jssha384-Cche1D8xe5iNKtb/Txu3Bgp4hAXr2wh6RcmyK9O+Ft6vTxITWBRJzi+lJup47NAz
feedback-screenshot.min.jssha384-X3ZrQ+EULVB/APrw/k4z1zjZQGgHrk7SUpPbwE8txFwsGhdH+z1j/Kvi+nghJucA
feedback.debug.min.jssha384-xmCecAmSGwAXf2WJZTcf7Fyojmx+Pg9yTzKGiPOHFiTcE2pEsTo6C7O2rEnvswYJ
feedback.jssha384-nMSGtmUl3aVVBX8Rf6GNJW5o/r3YITLUueTwXPRMrs+MSmi1QA7Klryy/NQQNyX5
feedback.min.jssha384-p8kHQDflhr+E8fiD69wq1xJU5KxcyvCnegq3ioKteI+kn+6oOngPD+SP9hBPdC5H
graphqlclient.debug.min.jssha384-1vsUOWk9MgoqapOfHL7unrSv8vf6nMAhOE5tvT67ytjwK3yxzFHWiu6PE5yyFN28
graphqlclient.jssha384-sMP12CcV6tCDbh9TR9vg/S9n0YaMdz/yGXTf1Vw7GaEPOTx56bpXehnC7/oEgRt8
graphqlclient.min.jssha384-gyV5Vrlt3zA62AXvzK1+p2yWTGA8jVl0U+svwq06tXhDX7NXNzQ7FDfokAiGFnGb
httpclient.debug.min.jssha384-zQt/B01+zsXD02XIBDuS3nWQdeb9lF/K5rcOqDYWEOf6XsxDunR68uEMLk4Ji2w0
httpclient.jssha384-35+CcCSgS0G7ELuFIlyOzql56SztmVDnLYtz59fymLaUBu5rk8a7/NRExfyCGCQL
httpclient.min.jssha384-KnBOMsuqo21b4LTeS7/L+uXd0jIoUQoZWbpdzaQnCWhruo6CIz08lSS2050BIazO
modulemetadata.debug.min.jssha384-2d75Ft9cQh3X0I6QVLE1YlE/C08CDV2fQCSEPMoDJCLbl9+weqQpvaRJtjahMocu
modulemetadata.jssha384-70LoI6C9aj80wOj3B5quN25VpCEQQauOr5bhY27kT9GWaSMW4qqiSvMQkZKnxjxd
modulemetadata.min.jssha384-S9y/MUuSA8h2wflsC9TI0TcC/+Wds/cVDng9RtWDYlUcg6VpAEXqnLKmA+fDeC5u
multiplexedtransport.debug.min.jssha384-m4zeLiQMVRIGUotUxqtgxyR2G41BzLFZt8rpnY833gLRH+nNo+OpgOWkhhlyevR/
multiplexedtransport.jssha384-v/muKParZjZjpkEU5NSUALAfNmz2It4RQIzcW0XN9S9W+levLee5sPgVXv1yAKAI
multiplexedtransport.min.jssha384-KIHfqOF0tTY3uXALak2wp8X9OuVVkVsE3gl25AkLXmZqYCwZqsyJwLPgPTEetj8M
replay-canvas.debug.min.jssha384-qb8TTHRznC6FIoYj3DvU/L43BpRiJ1LSRtflggVOobEcgGKexKTLZK1bjMtvP/rg
replay-canvas.jssha384-5bj3lvaR5k4TfTcW27vJjeFPuDu30Un4zMZ+068PAAF8zIHLRrqoMxm13X+K/S9Z
replay-canvas.min.jssha384-R2RPeEQaNKmaBBT67+nIk5Rjf6YwWgCjvH2o04d8hClFl8K583BbHrkIvhUXWdxm
replay.debug.min.jssha384-58YJZSVPDd71Cs7ewZRiToyzhOv0sU/CO3cjFxAw99tyJ6FUNMBwh2NwnCgpdys9
replay.jssha384-XCzv8EQvM2e2Olx6wQweJjT1MdTNop1r8d4TzQhCBW3KhxJCi9oS194w838AITTO
replay.min.jssha384-dn8ij23ue6hP8l9o58BudEs5tnHj7jBA1IXn3SQXb5BQ/CDNZ2848XNwt7mATx0B
reportingobserver.debug.min.jssha384-XN95LPzKlrH3ihUp3SyFu6BnLNafhbjNARl/z3MnTDH0y7qbPlqjr0Fmy9yu9pDC
reportingobserver.jssha384-NWCA0chyzGvfZYNInWzhO9ZmGzDK4ZxSqN2hmdBZ9LboAg080hUxKxtJl0Goyig0
reportingobserver.min.jssha384-AHsq6jcdegCcXcAss96XSFgZnkkziJN6uAcqDM7mV3Gakm5cGnK3hlQJVf5voO/V
rewriteframes.debug.min.jssha384-cA++WpITyzTOj4vmJV4pmLiDYX5bUMlWRBxi1qF+dOBQMHlIMUltisvs37T0qVTT
rewriteframes.jssha384-htgS/Gf61ozUgpBfNNiz/vFeRKEL5J86OFH7WayUpgHWgc0CL/jXlDg+cIMWxAvb
rewriteframes.min.jssha384-NcZ5cTjZPK00oeXAMxFjYK5/pOpEcRunDKXn8++kEEFXaj9Lip15CTJfLAowkJBA
spotlight.debug.min.jssha384-P3syX3yLa5Qi0mR9Q9aAn5613p/k89phc2EkZywCGa6gDfBc7BNcuWcSDvavWEPq
spotlight.jssha384-hk5MzdNYpv3zLg/jZsxUUqIqslVmWvOx+EpRKeYHAU3S7dWOiDmSyhvrbut2GSV3
spotlight.min.jssha384-r2/dLdl+aHn/5hYoT845X8q6m3FADiMyCTxf4JhF0arxxdp5pkiwTOSVWO5av9YR

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