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/8.11.0/bundle.tracing.min.js"
  integrity="sha384-ZvNNhVZ+HOV4+Bxu7Ho5LIIFBh25dLx810B3YriFlX467WOa5nUVy2qT9IcwyCzY"
  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/8.11.0/bundle.tracing.replay.min.js"
  integrity="sha384-QN91/flTrscEvaV7ZW+nRgpuA5FFtgdp3+6wY7V/qrDA7rS736mXb+IMTspL0xTD"
  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/8.11.0/bundle.replay.min.js"
  integrity="sha384-Ezr5hUd4fHu6GwJ7ySE/GOy87cRHRNk7ajZgOizy4lNBNAwnhnhJCvPwGcuoOQhQ"
  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/8.11.0/bundle.min.js"
  integrity="sha384-1cT9ZgmWadfzmpjGwrZBA+2oEZ05JzqXGa2TtADjIniu7KoJRG3EM14lIeb2VSMA"
  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-3jqrKP7VtFwDpEig882OfmNfBnNMKKEad+8qF8v9ZYrnUuO0KG/e0QTFv1rI/Bde
browserprofiling.jssha384-ShHc+ZdzxEUJRs5prQ7xN+nI7uu+ZTtChRpLzaiHSwEcfvi0fqZeSQrqjhCbGU8Y
browserprofiling.min.jssha384-bJj47HbW6FZaxwMPERRLz7ge01lEeGcCTv95c9npOPcUap3rmkMlt6ElGMlKJm2Q
bundle.debug.min.jssha384-Nd5eVBZrXDbnEP2/K7KasMACgiaotpjR5oAqaGE5KEIq6zN4a04VeOTRytafKB/9
bundle.feedback.debug.min.jssha384-XgmiRBBzVKHiDtLl0ksO5q7b0nshlDuqtxfn6x6fkgL18TXMx777Dnnpk2sBZ9/N
bundle.feedback.jssha384-kLVBBQAzvZpNFFaYwYDymGI3GBTU1MVw1X/N9NPY2QTKY0ed2ITkS0q3VDOyUMNR
bundle.feedback.min.jssha384-o5XB89rukJTjGQT/ncyUTDccphOEcaKglsiSstImBqjwamiwha8JBS6qbELakkeX
bundle.jssha384-QIi9PJ8seaXlVNlhtex0fUE1nnxGnLJGQc2nkGzcDFibqGHuDg/Ixj2SRH6CEGlp
bundle.min.jssha384-1cT9ZgmWadfzmpjGwrZBA+2oEZ05JzqXGa2TtADjIniu7KoJRG3EM14lIeb2VSMA
bundle.replay.debug.min.jssha384-OHhUaG1Vb+/DSv1c1LvcxuxBZnQPhaTxPTI4lOefHcrhhnANzOA4FNo8Uo3R3uiC
bundle.replay.jssha384-fvLoeyXdEPop010FK7864F4GQ40ycoSCLe31UDQF3xVjrBa6P81mt4doOf66IqR8
bundle.replay.min.jssha384-Ezr5hUd4fHu6GwJ7ySE/GOy87cRHRNk7ajZgOizy4lNBNAwnhnhJCvPwGcuoOQhQ
bundle.tracing.debug.min.jssha384-F2X57y3qFHGIwSjNfWZzjroiXqlXbu3IdW2nNrmaWgfPzJAsQjQPHTBMrp6JWUS0
bundle.tracing.jssha384-Xy/LiYKGyB5o76W0Ikv5FRJ2YGgqmTap3B2Env2KeWbCfu4486vQxZZPug1kSlV2
bundle.tracing.min.jssha384-ZvNNhVZ+HOV4+Bxu7Ho5LIIFBh25dLx810B3YriFlX467WOa5nUVy2qT9IcwyCzY
bundle.tracing.replay.debug.min.jssha384-09APu74yudoP+RUqA5a30rD2Og21yEL48AptDJhIXebuD+u5AgwcDHmf3+8DKT4O
bundle.tracing.replay.feedback.debug.min.jssha384-cLOPqHRXULxd29Z3sPa/bwMNtlD2D0LbQGdfEh9J1zb9v2Yz1YMWi6D2X8f3XkHR
bundle.tracing.replay.feedback.jssha384-KDXY3y3W3SFw/v/8slZBfX9OuEUCfEbajG9Zc6uG0baNJO9T1o6lZPfNyQCoMHDi
bundle.tracing.replay.feedback.min.jssha384-ZKyaFct/RZKxqq2l8HvSnCahhw0E/xR6tseZyctdX8BxUYS+SUPQ2ewttZA57AfQ
bundle.tracing.replay.jssha384-BzlTPeKQz6gnsVBWM7l1eQVOZgf7e0HEa3/oxn8wDawslnnfqrUOAyAYok12mC+j
bundle.tracing.replay.min.jssha384-QN91/flTrscEvaV7ZW+nRgpuA5FFtgdp3+6wY7V/qrDA7rS736mXb+IMTspL0xTD
captureconsole.debug.min.jssha384-Nfjr+BKfcXuXcVIp4vKdIc75Xx5kqHPhAA5BqXk1nGcyrOteqUKP9z6yuH2vdhLe
captureconsole.jssha384-hvtQal4a5LokLbD91bUSKu11xLjyTxPF0rIJamIGm/W2henhfyNNHGcItBMogHZr
captureconsole.min.jssha384-sllps75P81Byp9RnB7Gnth9+iyZUbfnpebYkofVuNEtB6kLOiIdLVn8qOKorcp7M
contextlines.debug.min.jssha384-wrTY/l6iAWx8aWgxm31rSf5M18+aE/A+W4B3r3i0ZOvKImWiu4kewvM0J1Gd6jBu
contextlines.jssha384-MwBtpLKhm8idaNI+S1/rTZwwuUGlmgBev2M7rPFDIOEKtjKoyKSMt8WDBKRmTiE8
contextlines.min.jssha384-pH9oQ6L1iAaZzJlMuvEgPA5ERYGtVWZtttqvADG+pX/mNy6scj64jnDOVYI0JbRA
debug.debug.min.jssha384-H+wEBkLJdHubw06fy7ENg/QDuw8SkTosgwDG/5yXj8zbt5DKcRBnR71CAFjd4k1R
debug.jssha384-pt7owIa88BmLf95WmriBBtXIld/HYWnTZx4WcnuqrSJME8Jz6uzuMISf+vYvmnEI
debug.min.jssha384-v9EZGVefle6N9yxLcDeJE30sgQ9ilDShrQpN5SAnPrb8rP/AQZObs8I4SywPyoVI
dedupe.debug.min.jssha384-6H8n9wZWqxZm1CvKHhA5jC59OmmCNtAGNCgcAzGr7WvTzyGM8/mqcQ7cCbe2mCp9
dedupe.jssha384-crbc1NrbyQglkMR7iIMaxpk8qKBrAVacCnEr0jVOTRtRelaMrphi84AxMwt05s2/
dedupe.min.jssha384-p9WP57t0dpbDbHCcYCnlN2D4q/m/kw5G9SoEaW7n8RAKewQjUBnZzSBBPEgtsfZb
extraerrordata.debug.min.jssha384-/V6IMBJGaEY3Nu1fUqKc/G65+E8oRIR8zjTDrt5W5BA2Xa4e5EzqTxfPjY0zo+Ss
extraerrordata.jssha384-uSZ0etKcdbtncxpgQfrBdtn/bHtPYxR4SPsH7slp/zCaNLtKIY3z96Lv5UCcFKu+
extraerrordata.min.jssha384-ceveLu62KyakX0TFShDCw+fUO8WSntqmlN19AhmbcX8ub+tRQmcDE1R0setq77wT
feedback-modal.debug.min.jssha384-mAJlmI3b8Ts4r7gAY7CGpNxV2cqdDpvQNJpb0urz/dw1PGtcLvzUXjooHd/lz8hx
feedback-modal.jssha384-mlfJ5ZXNOhrylQu+IS3VFxJkyT3WJxSUjN/pgIRDIwTvIrLMYqoru/WYanLMYc0D
feedback-modal.min.jssha384-RZhIyOWy/8de+8+xZP7nJpZMW3l/kxwC0aUxShN8Cxfro8dvFFVoYcHRSBUwVPaB
feedback-screenshot.debug.min.jssha384-cWA3ByhExFJP8uEUG6VmOLGEZSq4ZPfWG15TDk/NDn1rjliUYErEsbr8zA0utYj4
feedback-screenshot.jssha384-CE2SsIZlzU88pLNOraWubSZK1o0/eYh+YSkbywnAzTLYrQvOOlnZZZ2sUyEiijiS
feedback-screenshot.min.jssha384-N9s72Xm0p6/FWKkQLZBJkm1UiP1h5+A3tlSyZKAr6tD1rKd6PQyzJosB2Z5xOp0C
feedback.debug.min.jssha384-ras7h1mEQPD13EmopYdmbLLr2gwUpQB+COSvW0bb3BweKfsCXY8UbKEi3DwIupWF
feedback.jssha384-whPgXdASN8mJqLqJZR/HlU4VIHi+ZwydqhI6egK+a7NFtjQXSMBHvY6BoHMuyD1P
feedback.min.jssha384-77FG0nvYlXKoom1pZqXYmnE6ts9hSbbSwLHyW5fhSzRjTW9PScNUqNthoBqZ+nK3
httpclient.debug.min.jssha384-H3BriPAH84pT7UVc2nAcGAbBrVo4tanrlf8vvIiAwNtGLNqPRDX9dZr8n6YoHb0Z
httpclient.jssha384-+ySYE8NmW3KSG36AAo0hHip1GnWP/eyYAqoDIioFm5HNQ+p+q7u1SHgTkX9uwe8N
httpclient.min.jssha384-7U7LGcPHMuPNM8uvkKDc/AzKaWjT96vyp5mhOZBKqdJwMYA/EIAsdCOB6YTkv63R
replay-canvas.debug.min.jssha384-jnROCj3uQWfZELp/s8KNANL0urOc9ozu+yG6+LPBt8go7uKYOhwg6iU19X2HhETw
replay-canvas.jssha384-izB8NLOv501wHjP7bb2HemuRVUnFCnzdNJWO3j9Q4HHO24Z6HwjZLQh/eMiOKlts
replay-canvas.min.jssha384-cPa9VX7BiyllvZZ9nNDhPP6vfobbIu5oQmpVb1C0/tD26RVAZkEQuKifnCOqAmJH
reportingobserver.debug.min.jssha384-qzAgKHxMaFrYeyqQq40lzgLYnb1Jcnix092U4bRN9V+YydsFGAlpamZnxon4KtW3
reportingobserver.jssha384-S4ROjSB+QioIQcZa3FfyVcT6PQbMxUmHVnJrBk241nrpV3ZvHHpFbrzZM6eX3p6Y
reportingobserver.min.jssha384-bGX9CNU4mePo9Sd6QIvAoARZFzuGA7SwTIwNLf1pRQZb8ELYwqvRnPzLCAkaUzzb
rewriteframes.debug.min.jssha384-ZcajBBYXLtIl+7aOsDzr92wW9n0wPpT784DsHRod4FZK96JSYam1H6N+CFfmnXoG
rewriteframes.jssha384-KpVONipKQJz4s5RuRBW5LL1RmKJ3FmWmpU7xttjVPnWlIt1wTG+NKYy/lfgITT7G
rewriteframes.min.jssha384-7BFKTdD/+m4czOFoeWefPyMkTlJiiU2nPt+KqvFgRmqZytvg/+XANmf5LmjGO8Oa
sessiontiming.debug.min.jssha384-UW6kEGa9EOKO/m8XI1WymlugJiEB2Lao49krLaLrrYQcocXYF99ffGNVaAfs70BZ
sessiontiming.jssha384-9GnBZOxEr9+FeOHqr0Y36eaDaPlLLVknvWTnV3oOiOEagP0U7a+khpkqCxmeKLs8
sessiontiming.min.jssha384-JvoOtNo1tzC0cpmXn7bfnQ2vt/ZH01B2f8TYJNngqKJ3ktG039Txzay/aN6pDA+X

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