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.22.0/bundle.tracing.min.js"
  integrity="sha384-5UmENZ5GpZAO70Ux8xoY1lYIBzUVevUO4zvvei7OSpKI1v9ZZ03+cxXXuRDIHOXG"
  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.22.0/bundle.tracing.replay.min.js"
  integrity="sha384-zTniY4PM5A5N+Z0i2udJIfht/zS0FovUV0X30UJv0WgDPJidC4TELFx6ml+fxNYi"
  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.22.0/bundle.replay.min.js"
  integrity="sha384-AkSdpjS6W6MQpLytetDGJpUmgkhaH5GisSYp/DgW8yYqbDvO2dv/H4hIVfoRpd9b"
  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.22.0/bundle.min.js"
  integrity="sha384-QNxMW+QdBnfdxtKEiJ1dxGcrqTnqzuZOmYNQXR7isoRVP5Qo12NX9VLeCwbai6Nh"
  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-QulPYwHQ0CutOW3ZwVICSTjLz30Cg0e1nJbGV6yUqNDLgeZMgX52As/oexVObzby
browserprofiling.jssha384-hYbrswtPhLlCzevhhmz62hfbwSO2srj8fQL91ickpifA648LzkgK4cNZaGgdY0ZI
browserprofiling.min.jssha384-cTYuqMy+noQFsUZD0oOGg9PCjFZntWHNqPC5ca/YDDgd4tDOwecTVM2YRn0MiG+o
bundle.debug.min.jssha384-l9Joo3KqezmV7dcoyOaBihe4Q90t0QHOWHeQFQ4e82rGh/JHjrnoL54GirxHpbPq
bundle.feedback.debug.min.jssha384-/Fx1sCltJq+jBm9MwmB4IGYoxaCdARaHmIj3p6aiey/WDvY/WS1lgWrSL8l5FXZO
bundle.feedback.jssha384-HOuuEpDEdO+VQSGHwfy0RFKYKbkVPAM1du0QC4taaeBL0PJg8Xdvlx1nqr8INnsf
bundle.feedback.min.jssha384-+AL/dT7TJ53WdcigKgv7q+pIXTlwxrN9XTTSVncycInnvGnF/fRyEUP4Jjzlhvfp
bundle.jssha384-WuQ4l+shIc3P5k6TNz00Ti+GLxOKf9eyUJboFEGrrYCvzlv1N9ZttjrgAWnh2iVz
bundle.min.jssha384-QNxMW+QdBnfdxtKEiJ1dxGcrqTnqzuZOmYNQXR7isoRVP5Qo12NX9VLeCwbai6Nh
bundle.replay.debug.min.jssha384-9Sb/KUMJQlX9ddAWZIEF9x7FPvbJBAVEyaEZRfrWBtxDlWTrm5O8K1IDjFZDYr+n
bundle.replay.jssha384-gh/sSLPTF3kYIhr3+JE+IvqRVnUyGg4rp5jBX1rwmdNeJM1oaf7G3HT1iTWobfmp
bundle.replay.min.jssha384-AkSdpjS6W6MQpLytetDGJpUmgkhaH5GisSYp/DgW8yYqbDvO2dv/H4hIVfoRpd9b
bundle.tracing.debug.min.jssha384-6o2iPMzZlQXW0D72w0/30j7VRDPG/oOy7/dZWCJS3TB8UEY3WUzGwSbTfR0q7Ekt
bundle.tracing.jssha384-OKQOHV7cdUAikt1c5bGZl5TID1z7SxUs8k+jaawv2YWn0bF6Ed/3t3RVuPzBAgD+
bundle.tracing.min.jssha384-5UmENZ5GpZAO70Ux8xoY1lYIBzUVevUO4zvvei7OSpKI1v9ZZ03+cxXXuRDIHOXG
bundle.tracing.replay.debug.min.jssha384-dco5YXY28RlHfm331EY9Z8XYVvuzu1STH/fBR0X3pUWbkW3ysHWwlK1g1BHvLJol
bundle.tracing.replay.feedback.debug.min.jssha384-EeZa0ejsXj8UwLaVEM9nObmMor0985ZR5DOhDhaIfXYPXA84nRWmAhxd1IDgmt3w
bundle.tracing.replay.feedback.jssha384-qwhgin1hk5dH98TAj0qI61XfXz9ps2eV1Ih3zC8/Sdg4C4lFibfCOpV123xEHUnT
bundle.tracing.replay.feedback.min.jssha384-oWGCNYMW1TKXTLN0qoxoUoonZx1lBE0cnsWcZBQA9XU9iaGEtQjeLKiggGgP0lpp
bundle.tracing.replay.jssha384-/CEbJSvkPjZCwYLBOfQ5yF+fEjzI+98RQ9OIZNeBJKp3aAETkqS/4iG34uZT406X
bundle.tracing.replay.min.jssha384-zTniY4PM5A5N+Z0i2udJIfht/zS0FovUV0X30UJv0WgDPJidC4TELFx6ml+fxNYi
captureconsole.debug.min.jssha384-monasiHF8eRTMBDoS2f9zclwQv2H6MHuV0Ed7QtDxFIGUYSdBCIvqbLKgYOjza3B
captureconsole.jssha384-2A68cmelo+PFUQb4ktWfFZp5DAbxaxoQMwNIUlvnh2Hu5YGvkhBIE37yvJQ9LA5E
captureconsole.min.jssha384-Vrey3BQe0HMpvJ53JAw6v38ufPA+gApykyhWsQ27Aif/UnLlbwirdVvDQxVMLnGD
contextlines.debug.min.jssha384-a6tOy/Z6+14wfuAYqMjQ9Wrw8QtkXH56XoCbS3BCgbhojLBjf135r0qF0Wxa7ntc
contextlines.jssha384-DbkC3+Qyk0BkXDtujOMuqkwgfHcbj9a1drHwy9wgEeQkMou/T44OSN8FSbgrP3Lu
contextlines.min.jssha384-BSZqZ/0VUR4k/s2ZiFiK9/Xm/5c9DioAYZ40qe+ShG22psPDd6liMaAh7rfMzkpw
dedupe.debug.min.jssha384-ErInwCQh+CSUpeqBqMo5U/5HEA0/Ii+ddB73YBt3q69Wn0lBQ8eaTXlNwanq8W7Z
dedupe.jssha384-ceh8EtCmXJJg3WIpPvQb/cV+9D1LAJx9xO7IVK2KMw8ZuW7u5Zt0rUCYUQ6FLXWX
dedupe.min.jssha384-WP1CetV6i980WNbNpHrrWQ1vF52YKcoY4nQPkB4W8MOTkCEm9cjmci6wUvCxY4Kg
extraerrordata.debug.min.jssha384-GYpahxNSprfnZqwYMXCwZcSDHP/ZrOOwVHbT07MYBBIu8D1/fDvA42DOnVI8lRgg
extraerrordata.jssha384-M0PY3grEwZzq/CAD5nVcnnDoA6U/ZIMrEyUzMwjFXinH7LC1ExKfosodhXY6hmzr
extraerrordata.min.jssha384-lrnq5f0BiVpxBkcPpsHnX51s4LganHTw0kUKdasKPCI0jnOkwts7pSRUOYchQBwN
feedback-modal.debug.min.jssha384-k6eGHXSxZWL7iEEx1cIuAhQur7SWZ9CT5iddbLN2cq0uzvELTZrCrSyyXakeRy0p
feedback-modal.jssha384-LTAgKTJYC8k+OECSKWSOKR9QrQOG+Pbl+xgw79aqDKT23CsRXn1aJPODUxO+IeEd
feedback-modal.min.jssha384-LpYYcRocl4DuYd+QtGoAFISveUUQKADrsaiDtAQSGVXzcZyaPZWDAvYuWmB1wEhw
feedback-screenshot.debug.min.jssha384-WIEaU24JI5txpVbVaLPDZok53r9reuEdmk72rVFAEyC8eCq00GIbQ5qYADxIDGIs
feedback-screenshot.jssha384-j7b8helA9aTGE0MXJgfgbNFlZ+VLWZ3RtkP/prxcVA2eCPSWV82KyrMLW+nZ9p/T
feedback-screenshot.min.jssha384-jIfM5LQEf+Q2922PGB0xcfJuz/RiTNfifXEse1AmAmGpVMTrvmyytPj4VcunfmHy
feedback.debug.min.jssha384-8YDDvzDM/U/CbcizwsE3ikGb6mYzG6JQQoQVvaF1ioXpsDOPKBChADmH+7YWrPJO
feedback.jssha384-S6SPL6sFUgYfryHtAGfbpwHJ6wRmW1AyKmAB1JUWV2LsH6A+CvBMUlL4f5ZB9wlh
feedback.min.jssha384-VLI8dyfAJmUfMqz304iOGu5GIHh68fVc0EB3KTXMyHAhXOOyZC8uKoX8Pkw4nIAy
graphqlclient.debug.min.jssha384-jzQcoTpQ6kT75AHAcANYoYzOsqVWVazGgUgok5tEWLzAI3U9k0ZqVsDe6RTiZtbt
graphqlclient.jssha384-k9LxAspL4Vniu8OlHnkUTML8ApupKz46c1Sx5sPLD8a1N8D9RpuDhL+eWXHEAy20
graphqlclient.min.jssha384-zcgiZXbnSNqfiM1oIX9rTuSVdqQs64n9xXCdRcEMcpeTr2bvth9J0P7mdJWr35x5
httpclient.debug.min.jssha384-UDznk7aWMDNXqbkPDzJ5gve36UBS23b29klAs9MKMzlW2YWixs0zVao1OLT899uX
httpclient.jssha384-ks9yD0WPGu9J7CbnHBR2WAUQkB7GfLoKejG3sTyxIrnshVKf6KkON8Q/K/HYgeCn
httpclient.min.jssha384-fHZb+eaMz2gIEkOu1LvqZmNFXSY09FTJnLbauC7GM3Lo1HLdv5XOHtkXnOXI9Gd3
modulemetadata.debug.min.jssha384-P9Iqyf/pTqAZE/x9ACaEwYAGikHuJW6+PlgTCrrGtAaq4qrQLlf+vXEwLTSGM31w
modulemetadata.jssha384-KmEKYheDbMTNlDMgQl+RPa2W/yV87LVbPmbSsyr02l7emrgOHeXAxnr80iTzPn7k
modulemetadata.min.jssha384-Rh0sWDopoFK7rFQW10YM0e5ClMXWtCJxB794qmb5T6TU/Z3BUeYVFgak4o/PrR2k
multiplexedtransport.debug.min.jssha384-ZGLZW6ci/4BS6ndkpt91Slli3IjfhfcPvdv0VsdjKEP85RyClclMemD+jQIIx0FZ
multiplexedtransport.jssha384-y/j8g9MZvNhOoiOkxI9C91YueRoNL2wJGT5Hx8vX771597enrL/R6l7YU0wK9/gi
multiplexedtransport.min.jssha384-GD4BqP06byEBc/HtUYkieOFI+7yYNuL4YJleoKRV+Rze4XF/6HeBqq8UJ+LOTxir
replay-canvas.debug.min.jssha384-lGI29OTzqdpwW13GfqWzbnAOfyG1XQe+AxRrPRM+RmQVlWZDgMgtSHu7Ji7TrXUR
replay-canvas.jssha384-dmOLF5V2eKKctTd+XvjCrlDBvrKupl0+gUboiafXzYvmgPH7D3nvTTB+rw5M8bXn
replay-canvas.min.jssha384-yYPEKvJlfsroYKz3GMaatXe9f3xxyY9ZpNHe5aEODjaTjNyacLClINdOAWMqMXZr
replay.debug.min.jssha384-LCuXI+OFq5eTBI4qmdQInXDPSxhiJ61AteQukk4tMenExGr1PVxvFz2RnSJ6CfOg
replay.jssha384-Sji1LEWdTLGJMg3+jGPixgqcSXYEw1ptSXDzVrxIswbqXJCxg0IW+pZFLK6xHVhx
replay.min.jssha384-mnjr+6MPo5nStcXGiQ80tEEfJVVF6XX5V22NI3uweLKVNnFj4Ji8b8KyZx9Nk8lX
reportingobserver.debug.min.jssha384-PXRPL9agPUGOnQk9Cck9RTywvsVIJHbsHq1dI/K13eu0Qs9r0kv7j4lBzKKlbrDm
reportingobserver.jssha384-dNuAl1VvpR+7HNYNIxiuo6ScMGjgtzZPKtO+AhBRu2E+UkepsBzZ/wD0X0lVTvXq
reportingobserver.min.jssha384-8+f4A75dd3sQQm5z4NQB5QqAA8Yl+b9CanbV019rvPv6K5H9YlZXnRSLFMChw6HQ
rewriteframes.debug.min.jssha384-SBVb7u5ozAb8WrjSMNvop2rBIQXB0kjNvyzQWzMP/1MBdNcEJBTZyjomdJc4fRro
rewriteframes.jssha384-njPHJOy1UwgjA47lyW7nnZiBwTUTXfD2aE42V1G9d2pab/vmkJYEoujz8p78LUP5
rewriteframes.min.jssha384-CsfeMF5dRiNEOBbwBJ6dLdKozoJOgVD/KRqX/okca9hLJFjrTN8IOmhvYBRylTJU
spotlight.debug.min.jssha384-13qfg5JzksOQbVDgESnSNrdXYN1wmZZPmftKlbvGrCZIpjzfx5tL8ffLW17x9drE
spotlight.jssha384-pAfTp7ObC9OKWFJPct1yLY5vC9TeJcsWfaTX41pOCbrxh4CsjJbis1/5U56MKuUa
spotlight.min.jssha384-1fcqzb4SjJtRQx6BOA/dgp0KSywCvZi4POfXkNMVz3H+/Ep1i3G2kzUc8yupht18

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