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.33.0/bundle.tracing.min.js"
  integrity="sha384-xe+dIytuF3BEjgke8U2vrUU7Zq9MH05BbExHU7+30g4xKzGTEgiyA/C2YfyFSIa2"
  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.33.0/bundle.tracing.replay.min.js"
  integrity="sha384-93lYErYRrmUMn6D9ZqhXTtiUkRQ0u7AVgk9+Utuk5KZ7/WmUifQlcmM9o6JCGBeB"
  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.33.0/bundle.replay.min.js"
  integrity="sha384-m0BvccXzijHZC0T+cWYdiotFK81/BAA4nF5ej4T7SnkdLdEWzc0nt0DsnUqZsECh"
  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.33.0/bundle.min.js"
  integrity="sha384-s+iD50HpDGYOzLnOZGR6SG4sWt0g7dG9hdFOQKvJHKuNoQ5+/427vObIhffcW+U7"
  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://[email protected]/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-NCviguDY6gFrHjzYtbQKJb7uWm9R/Jiy6u65ksWknQJCnBDzf82YxHeichEYRX6R
browserprofiling.jssha384-XdSG7wGThg0nUGouGqCmDN2SlXX3QLLcotqsGtAYQpCQ1+2nlsqXQwRtsTnTR5Yc
browserprofiling.min.jssha384-+3ofjuW/YGmTJJL+meoZFYVlhKhxrpWVQ6t+78zEoB7kQiryZaOVe8qQo2qlS4tA
bundle.debug.min.jssha384-1JqSFJavpybL9kMX5HL22xhrcNpbEVAEL6M8yD/mA3TVBpN0RA7VcUvYKH5OGZ9k
bundle.feedback.debug.min.jssha384-iSxzaUBsOQSkksd8hBHBZz8lL7TL5r7DX+8RByQ0+xQdXEfc/YZ1N4FICjZgQNF0
bundle.feedback.jssha384-Ped1ynwm8lnuHE5k9NpOyYEhvqX6KofZ/YmbObCNoBEi/x72QtGYO9mfiK5O0Dva
bundle.feedback.min.jssha384-hiJRUjAEsO0tE9jct/DeDUqAnV2Dbwidu8xaDqPt1ZcdKqnktDlORwCcbR3ND7OK
bundle.jssha384-wmrvpHN1yITyNjXTZe37tn7Z3wqG3izBlZIfvdD7XHS5OaStfH5Mo8q5E/2ouq6A
bundle.min.jssha384-s+iD50HpDGYOzLnOZGR6SG4sWt0g7dG9hdFOQKvJHKuNoQ5+/427vObIhffcW+U7
bundle.replay.debug.min.jssha384-EMcVQgedDllp8N0s9lINvrPnUKBCsxTCeGjzviNJIfQRnaS9XXJlIEmVTYLMb9/G
bundle.replay.jssha384-KWbR/QpEK7PXLYI1mamGaHzozCdD6jGUa7WoI0viX6rIv3GUwu1ehq2m8ww3AB1X
bundle.replay.min.jssha384-m0BvccXzijHZC0T+cWYdiotFK81/BAA4nF5ej4T7SnkdLdEWzc0nt0DsnUqZsECh
bundle.tracing.debug.min.jssha384-+1B8nbbeXQt05cvn2jzOGLz6tojIIaZy3wtP7sWAkQ0riNonfxZDfzwl5IQQd5zS
bundle.tracing.jssha384-8vbIHy/xJmXx3gubNpBdy+GcrDduqBk/YBK49vCIUe+cQoZVIsrWESz5jfnL76tY
bundle.tracing.min.jssha384-xe+dIytuF3BEjgke8U2vrUU7Zq9MH05BbExHU7+30g4xKzGTEgiyA/C2YfyFSIa2
bundle.tracing.replay.debug.min.jssha384-msk9hFr+oidztsVyhCcZMOcdnLQDGIjvXd3cQzZvuVzT/avExWjO0VpXo8DvOWGs
bundle.tracing.replay.feedback.debug.min.jssha384-+iUUwLXON7n1oD9/9HSFkTLcSA2ezV5RUucxYYLiX8a4RTV1zKEQomPfz3Uk7sMz
bundle.tracing.replay.feedback.jssha384-vkZqH6Q9P0wX2qg9lgZK71+kaHpcOMfzu5/t2g9rtiZnCbsMqmTnulL3iKqXB4tf
bundle.tracing.replay.feedback.min.jssha384-086w+zy7GJRfLJEjOK9E/lu0rN02c30RtZv4SFsK322gzgBgXIkFdh0554voZq8Y
bundle.tracing.replay.jssha384-M4lGJ/0HlUoBc6fIliRa0GbYQnR9vUABQTSINEXSGvonQJ45xxQKnF/R2HFJJ0kY
bundle.tracing.replay.min.jssha384-93lYErYRrmUMn6D9ZqhXTtiUkRQ0u7AVgk9+Utuk5KZ7/WmUifQlcmM9o6JCGBeB
captureconsole.debug.min.jssha384-YW/3WEgsQokj8BXIIt81p57JLzlF/Ghdg2qMEEFe9pmdxfMlhvA8rztWFm7Oym5Y
captureconsole.jssha384-lxUt+JM0HFYPpCOhbt0nk5TzuuSdNP2NNhADxdv+mIwXjiNKscoOfid4EMlV2X/Z
captureconsole.min.jssha384-tLznhqmpQvioHPyLc88mPZC0LhjPb0OIxPrZ8Q5rk9dC+nygIEyCyw6pBm2MADio
contextlines.debug.min.jssha384-Hk5pAY3KMkipFfcxebJn+xNPqUVjs0QVSNV1FI2MRcXiBOxqRHrYf7mwOmYQx5Ca
contextlines.jssha384-KxtdxGh00RzPA/gpg09P54fTR299lw4rUA0znsVu5LaH8/+zX4NgRepV1a0likUI
contextlines.min.jssha384-UIRjULJFsIl/kSZZmRKP9rn+vQ7h3DSF0TlUE7PSH6IKVSzpemF0zkeenRAK2pUp
dedupe.debug.min.jssha384-X49hIlPgqrOWVv1DcfvLls64+VcEm8VenL+y1iO2XV/3ZwFvQfpEwvyC59P+gdXc
dedupe.jssha384-9vTWiAQSHYpD/HNlO1NCrLZ1xn7R7d1AbeeUNnICOySW6tA7/dK6TohIla6MDmY1
dedupe.min.jssha384-i5d7lyH6jwRHAeN2BfDu9BS1oPU5babOR2UIDPWe4oew5v0fnObNy/KiuduPcHQZ
extraerrordata.debug.min.jssha384-UftZJPZ+zZ4AX8ebEwkxDDs8dsPMszdqIjheGxKauSBv79pKYBVb+xpSVVsL+vPM
extraerrordata.jssha384-WCraQbFKf2CjrZ1wS3YItzoALzPrV6T9Zg1WbK8phncXGs4fzbqTSvn3+pJ6ydjU
extraerrordata.min.jssha384-yUT21tXQpWdaKcBoCj0r6xb4ZigTrG2OMWJ20ftv31+/mAN7tmpL3M9XKut9z8Xz
feedback-modal.debug.min.jssha384-BqVAcnLhuYRgeSJvROa2Fi1smCBSlu31IjFbIJN54888U9xvOmLnujdkFH2CYbP6
feedback-modal.jssha384-P8bQN4BfN5XeqimlaniFDPobkiCIXH5ckHGOpFm/WZcwU6Frr02gFShhFK4P8/6v
feedback-modal.min.jssha384-Wqs3LcwpCq5nnHywylN23lqCZD7IIi2RF6kl0lUIXQetUGkdI/Q229eQrqY58kl7
feedback-screenshot.debug.min.jssha384-FfTXt/DoK5M7yl8aTFC0suOnwfj2BBrLC7n9+fauJR5Zaa/GrZwVCSwxLWTO96bv
feedback-screenshot.jssha384-4lsAYTWbdgPSWM3Hk2XU9TbfNKjD61AkwgZtpcavwBP8MADssLqHM/moE0q8zFwX
feedback-screenshot.min.jssha384-BbfIwMwDD+eYsqBT42DgNrzXt0Swm4YPgqNU5iBBecSCeIhQVZPe9eoJAbWiQEIG
feedback.debug.min.jssha384-BtD2Dtc+oJ/ULg37rKTDBYGADieAQzxz+0s85cXeOPG9/r6uyGIX0HFVFJQHpgep
feedback.jssha384-udKEdkzwYdyy7t5E2TP0q3qV0jA3PLQjg/3rMcBvOeY0wHfjoUz0mHqqjFdW3d3b
feedback.min.jssha384-Nr0DGkTKg0xSqGfQzGyN8s7m2iY6ulTZqrgTooo3PX8ruQ9K5vhjmP0lc4Mem5/v
graphqlclient.debug.min.jssha384-jYmcq9FsA1b9Q3PoL7OW2jT9VafJBv35a3bNukVMJTgRDUHWq8GBo19H6j4oyzoI
graphqlclient.jssha384-bUj/iNOOYQM4oWKZvCoSfc7wRw8hPLe1v9mlA09tWsEvagWpTLSegAuN7J9fijPH
graphqlclient.min.jssha384-mXKF6WnvHMd/M0/PlA+31YTgoNoGWBA9cNB784UZIgoAmrnXPX/A96wTi0xF5xiy
httpclient.debug.min.jssha384-K2bZ/bC7BWPuUd025W3QsEaD02U83nP3dG6J1tF2T7ZkbMaxP1QP4ABPrs87fukR
httpclient.jssha384-1pdWH61k0hIddCszSsFciVfixmAtam04rjnz74wdzo/cbc/iEjJXaCHYonLEcfhq
httpclient.min.jssha384-Hp1Y+idOGcphgTzSw5rlGo3kvQRavQb9Ado+IFSA0sKfskq0/SKaPM22PTowCVog
modulemetadata.debug.min.jssha384-q1rcVWUSYS7TgGnHBdv+icnUrFgdbi1JS/cPx0qK3uq2buUZm+wXN5WstvTITsw4
modulemetadata.jssha384-r3zbc7giRAdTYysIOcWZ9xIiO/vRUCBwR3KOaGGkHr1DnQuW1+afhkvf4hyFLKw0
modulemetadata.min.jssha384-3wwixfIC7/XipOJocAhNSPuB2SeD3fe7atIpLwCTsGkrvaFMZHmtO04H+3NDXQhb
multiplexedtransport.debug.min.jssha384-+i4Hzk6K9yuxsr355+/EVyEMHkdXKANH7sQIB0irYQ9ydCs/2K552S8Ch6hHaly+
multiplexedtransport.jssha384-sS6RSGFuzOUbqS13KvEn2dn92gwqvNWyeNnfDKHzZUCPALTy7P4yA+DTANuf9pVL
multiplexedtransport.min.jssha384-dTItTVIeeaao6cIdPEz/cG96z/1kKX5fBmRia0iHQIlz0QNLHvh0NifdpUwCYnSD
replay-canvas.debug.min.jssha384-mDNaDQXUmPlUTZ5ujk/AW1akzNqyfe8YJjGt/CGNT13hjSpvRfDVOKp36JWMwpKq
replay-canvas.jssha384-DprIeGAFjCf30gFwZDfYG594IkW/5K5itUzCmcdi7byU7MSHzDUxG6piGAx8gry6
replay-canvas.min.jssha384-u2Wyr7wekejUv3Z5uEjcl6zg4fZRzI3YJLWbSfaYtR1dhDZdAB6b6wezPPutYlPG
replay.debug.min.jssha384-02p7f0OXNl6OKio29wjzLGoSzdXgRJXerfKRf3Xr0zw4qDD9psortTLFDa820Hbt
replay.jssha384-SGTQAbijwmdZK1wLzCKbQuSG6STgCs7attEJkoREpVv0BBGldKsul7dN0kuD3FM8
replay.min.jssha384-kGEsofuscRsQOA3R0VI93NgJt56L73uF11DostiCXgBhbJ5vXD02JLqIZdGYrGDp
reportingobserver.debug.min.jssha384-uBuWwvAWWnp9RQyUhqcs+8cawPrgiqyBtcg325i/Ngoy26DI5voTJOh387cyvKMP
reportingobserver.jssha384-GnXSVAOLs8hreSWLn2UOy0uyeTmOrAtFQsetfqjn8bAdOaD47FameYwIUN0Q9TLj
reportingobserver.min.jssha384-vz5oA5wDpkuwrYNuudNqDgMzGURiyU2NtlJdl94fYFmUtveBFSqUCsBntnEy7Lxe
rewriteframes.debug.min.jssha384-IIxO5N+2yRjAlIbecnS0cs1q62LVGVB/r5nBIOxHV55euUp2p4n/NcaRUY0xP2rM
rewriteframes.jssha384-/ZMKMlqxvGPYnbVR1Yr/vAw5cbXr48TuCzUGeJV47hNgwi0/sG8S7v1AnJVcTM41
rewriteframes.min.jssha384-UO5DqlT+C3PJgIZpdZVc1alXH/1v3AyaSUZ4hNePqq1n4AmfA+bmtKb1knptH63r
spotlight.debug.min.jssha384-MZ447joSCT+HwwQH+8uyl7XN9vif+PdKuiq3Wg2RFQv9dW7KlRLOjD7wr/FQoLNW
spotlight.jssha384-9lZM9Oh6hysImlEfFskYtUmjQ/+GIrLfLrvdzbbtu1owFumzIz4kR4Y1rDBKomw6
spotlight.min.jssha384-yaCPqH5bXWGVF7lMv/vj4mZKOnrz488tjxGI7w4DF0ncSYSzdcAR8IMHEX143j78

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