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.33.0/bundle.tracing.min.js"
  integrity="sha384-Pvo4t/2buf1ONcckqK2aAmwl/lGrx+q6R+FZsr3FHgfZk9WbY0skSGK77HAif3vI"
  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.33.0/bundle.tracing.replay.min.js"
  integrity="sha384-ICSZUgHEFBArYxZR27+tJYTkk8ye7I0xXZcjpZu+o2lpIiJ29suJJrth3xw+YTji"
  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.33.0/bundle.replay.min.js"
  integrity="sha384-lWMgObUBnrBc0wWZTMFeEE40+iWK7l2r0xHNNcVNqjIAaqlWxTGx5vnubSgUMlbS"
  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.33.0/bundle.min.js"
  integrity="sha384-PhdbYQgNq4FZT9J9E66mTHzTSkQFzpN55i1qIb6Oj7cZZHgu60k7IHOGor1dvLvW"
  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-/NCSemGuhh1O2x1MWLX3nOgJBQ3kg7BR9jLUSDSDM4Asb0P3040gasgeSK62Gig1
browserprofiling.jssha384-lmYbUDJ/T3lrtxIWbLI4OdMs861Y0p9fJmKFAjU8rJlQjHUpSlYopVoKr0ZdzPxZ
browserprofiling.min.jssha384-DhQ2VKE+zzim0nKxZjGEJ5nz9MCbRegtC7z54AJEzyTTJ+W389/EnUapNRBhcoF6
bundle.debug.min.jssha384-mFc9ejdQIJeDD7STIKGrUt0ApRvANvXFaTk1XW2LuRjM40wSXUMZU7mf97dhCIV4
bundle.feedback.debug.min.jssha384-IOIz1uCesAS4c2JUrk/TEvsVYwRCrQEP1R3cvXFDNpqim9C8YtvaHmb3dPzz9cE3
bundle.feedback.jssha384-5kDaS7S7ZH3c2jEsJEaDaSEtewtewJCtNXIncLWJ8VcJUl7et1CtQVPTvuCY71v8
bundle.feedback.min.jssha384-nbT+puUBoVepo9DU5k3ibnwlftvtjm2zlGQyJTl7JZtRukmHLki2hYfEfK7CE9Lh
bundle.jssha384-21G1RCEOiCy1VLYI4rcF2dyB/hpefnaFwq7alXHz/3wgrJq0exaJF/E2tCXLksLJ
bundle.min.jssha384-PhdbYQgNq4FZT9J9E66mTHzTSkQFzpN55i1qIb6Oj7cZZHgu60k7IHOGor1dvLvW
bundle.replay.debug.min.jssha384-0Ts/qGn1beZKn+lw7MW3lcCZh6IlouenUHODkR4yaABe7SOjECKxNULI4bFuNFpU
bundle.replay.jssha384-Sn+o2lxkHsikKWmvpwKTHRcv8SaCa0k+tj9xwozoRkrxCyyAaJ9rG+woVFwB93AI
bundle.replay.min.jssha384-lWMgObUBnrBc0wWZTMFeEE40+iWK7l2r0xHNNcVNqjIAaqlWxTGx5vnubSgUMlbS
bundle.tracing.debug.min.jssha384-q4ErwUIlt664LDUS5TYBYdcqy7PpzYw1CaEZ0atyV7o0LttIJ0nsJhu3bxMJ4R2s
bundle.tracing.jssha384-OvZR5jXc9ZbzpSj49kyxShwB+f65B5V2hkm/C30s39RllMxs/Wk303uxPazdzMSI
bundle.tracing.min.jssha384-Pvo4t/2buf1ONcckqK2aAmwl/lGrx+q6R+FZsr3FHgfZk9WbY0skSGK77HAif3vI
bundle.tracing.replay.debug.min.jssha384-iK/cEGZ2wtVrog/sR6SdyX3u2MsRC3jV+YK9SM3+BmRfgeH/HCnGB+mcexPhT8Hh
bundle.tracing.replay.feedback.debug.min.jssha384-fNTJpSKp4Y/ZbvJ1cDaylVTAFdxDnqoeqgWgEvatdGmN6iBol6GC4ftul4YQRnt1
bundle.tracing.replay.feedback.jssha384-aOx4pUZN80iyoRmbyTv3bah5TmtUOOzBSop0Zkgj6wDF+kIQAip2Wptj8TWKSkR3
bundle.tracing.replay.feedback.min.jssha384-7bKoqeSi/X03omMMMovkwfBM3LH0aI9YT3pIsZQGAS0ZAvjXzabcNE/yozy9ckrS
bundle.tracing.replay.jssha384-/CouPGgRqpS7NU8BlSySOLGuriwJ2g0neh6b5Ozs9NN80yMEv3OmuEqwwhrcxA8Y
bundle.tracing.replay.min.jssha384-ICSZUgHEFBArYxZR27+tJYTkk8ye7I0xXZcjpZu+o2lpIiJ29suJJrth3xw+YTji
captureconsole.debug.min.jssha384-FClUhWwxyGONB3x/r8D+v3Y/CycsNVqnUrbh11E+BnzFbgmZVHXyWGkiDgxZE4yN
captureconsole.jssha384-Hc7vnSqyNTvhdgvpku9nxt/sa2cMnikUoa/gN/kxabgEnHIChLmQcdyl77k/g1U4
captureconsole.min.jssha384-Jr40Lm1kLVOWRpSOdzegxez7wKhqbsxRPQI0fjkd0MZZpE2urkabl7Fc9W2c3npK
contextlines.debug.min.jssha384-ObsYsv8jESsWk/YrFyDHg9IiaYigdN4IFjSGOxXcX0itJdTFLCgbbVZjBJUIOSHX
contextlines.jssha384-GJAC6HOxmhpLqKwPmoFI53UlQdQAhuM0zFs0/GMAoZD1Hk29i9Udu8w0E+9orvTj
contextlines.min.jssha384-nLzObuTOLZ97IUBYrn+PchxzuyXnLwX9mZhPlA5EdvgbDcfEuZYn+74hJYvV4+LO
debug.debug.min.jssha384-emqfJaTO8Mz/jb62GAnVYfzmDApKz0bwhh9PaIM0c4OxMStcLhgU9xbbgKkN7qff
debug.jssha384-JuCCGRygQS8/uzfWGo8pp/kgekLI/I/Xl74JoFJYGgtnbU25vTCybuIZo1N4irk/
debug.min.jssha384-4S2Y6cvXl5FIJFW+nUIhGJ8RXGgBkmMVarUNeUmrWe7UY5rt+eEewqg5NQotTpFc
dedupe.debug.min.jssha384-Jj5w52zU01FFQmzVuv7gvLJ9+sm6dSXf9B+NNOWOLLlf6j35GIc6OVNBvt8vI4Ed
dedupe.jssha384-H8QUer86PWK+EMioE/LGFWyAcjn0dVGVEvn1J+hvUQx46hLwEFY56j4AY8/Y7YRW
dedupe.min.jssha384-fKmmBC77b28DrYHyqijVz5qT9Tpw1K4ep1hc/kDOP6oUgeVqL6qMBcQBoGEYLCUx
extraerrordata.debug.min.jssha384-jjt5jXexSL89Ga1OcsKU0hEMtEBZYAGUsEs/xY4x9EJRCGgec3wy2JN6h6D9TBh0
extraerrordata.jssha384-TcXGqSf+WZJ4f7+ee0A3H4CyXdJb0gBDH2kdF68Uekqko6iaDRcIXa54DQz/ZR7d
extraerrordata.min.jssha384-S1P8v5jUCQV9XR5mxz3w8Slbcald3rmTT4v/TTRqoufV1MGNKaxjze8s1E14gGjn
feedback-modal.debug.min.jssha384-zKgAZShc/b65T/sTg+HtI3E0zU5bptXMpVIH06c9lHumKU8+gkhYbpfK2oD8Tkb/
feedback-modal.jssha384-pU1N/ekOFO38zylOWJ+0tJKWp559Z1wtyfZBAly8YJiSrXcLFz9HyCSZ55u6YTJm
feedback-modal.min.jssha384-RW+f40KCrP3sv1bz/VfViJ/7r3eDBy0rogERzd8pSAU1w5M6I3rGxHK5uPn1eM2X
feedback-screenshot.debug.min.jssha384-JGaxUq2/GRL3e8D4JHbcW9jZL2rPKBZ5w3yiVqfpwYf2B6CJap0ELWFbuoFzHeJ8
feedback-screenshot.jssha384-ixFT34d2gH8jMHCX9RdtFDAxT27RDq7Bs3ZvYm1NlqoPTyQbjqmtXMSFFSbhx/ZB
feedback-screenshot.min.jssha384-E49noOV9kkDoS6J9zUBS5S3TjFs6D70FeoeplfijkVe7c3L5zdISzerw4EMspR8/
feedback.debug.min.jssha384-yg5xI01/RqM4bBHmL3uNTc3geSGXz565WcHHHtQubc93Bq5bKC/xNo1XEdSzF/r8
feedback.jssha384-iL2PTqXdBCAT4RQ//3SdyyrrZ3g/RGztnAZrNn7fGwW9Ytf12O4k87tNAy/Y7k2a
feedback.min.jssha384-f0W04H6NfWRiHNiSKpwlyXUTyNmzyJSH3za4G7bQIXeGnBUhfWDA6Z8Zjcv6PAK/
httpclient.debug.min.jssha384-NS1Qv7UZla9PDUk1qkJX2AkKW5KGr9eHWBpn44GmYMOHquwi3Ujvl1vzf25wgliN
httpclient.jssha384-FqGua6Z+B3vjIU/BZDtTDJDVNHsT6vN3EACE7QDgx8qwg4fayK4ay/zALURDElMK
httpclient.min.jssha384-L273xKOHWDo3Gq2Tn/9cFje8+sJJPHNhHajavEgmkEjlnuzgqf565SSL1rj+51t4
replay-canvas.debug.min.jssha384-tLzr6rv8sJZeq7XIdCptgd8Pbft+MIoxFI6d8ZWCHs6WxWdBvAgvvmczhAhTDkT+
replay-canvas.jssha384-GG0Y2o38J7mfWlbz4ir4VK2KSv4WX1Y23QDf39eeTSQVdRoIGxH1n+iQhqL8Ifdn
replay-canvas.min.jssha384-eITFwq6e+RGi+1eY7euZPSQ0fJUUs7rjnJIYXJ4IfZUPINShdX+3/RpgaE1RD5RW
replay.debug.min.jssha384-un9/FAcEcjWD4FCy6fawvHZlRZ1D4TmRT1ZVtB28ojv2VfqkAbonWvXiyInsJpdD
replay.jssha384-RGDTzDkbT8h2D7V2kbgeB23AMecEPcXpd4U5R6BTDfwi22Lk99H4R1SW9yJDsSyK
replay.min.jssha384-kDbYdP8fFRYxu84jGcIBtUeGQfTZ3b6L5l2dmDz3eC7GIuCZyPgYEpsLowAwa1bs
reportingobserver.debug.min.jssha384-us3b/vCEhpNV1W7BxcD7gqU6LwvV30A8kcNHXoN1orRmMAehZR8QTT3K0gfCfRV/
reportingobserver.jssha384-kOOAXZJy4b0PAkrj5A/JsN2b7IfGMrkLogduDFmZP3Ayt7WLBDKeYUc7Shgpa673
reportingobserver.min.jssha384-xxBwkv6feygcl08x/kV4pq+b9nV1TTZW8ULs4xcawzIM/4m25JbPKOSmo2euni3u
rewriteframes.debug.min.jssha384-VgDQmnIukw6BUEjt/w5Le1EqTMtIQxbdjhMmgdC6ZJEPKuqMAR2CXNqpUD2hAJWP
rewriteframes.jssha384-jHXpIlAkgzzuvIu/sK0UnDsh8cCMraWzmhNO2so+UXEoCTKgVqiKzUnZu1Gc1rzY
rewriteframes.min.jssha384-3py0CgTOc3S7iI9PpgyHMXmP4gH63hAJD8HyUqFSFdlfai3hYuSlo9oxCITSi3Dq
sessiontiming.debug.min.jssha384-tRM/RI9iJhu60o7rLtuXd1JmPMAVVUP9sX7dzycCHH7yRFLJ82l9UT70oDNLVqfo
sessiontiming.jssha384-E1Vpse38agQCmfcO/AtUJ23UdipdCsGzIf2yvnOA84D1OkyK+XBWp5F+LFCXRLV2
sessiontiming.min.jssha384-yYAuhSqADEVJB0H5Etxa6Ks1fhmjDM0bc1t4kzgePteEpX701Ch/zfMx5mMj/h6x

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