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.30.0/bundle.tracing.min.js"
  integrity="sha384-whi3vRW+DIBqY2lQQ6oghGXbbA0sL5NJxUL6CMC+LRJ0b4A64Qn7/6YhpeR0+3Nq"
  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.30.0/bundle.tracing.replay.min.js"
  integrity="sha384-768YK8ZTTfR89ilJ9vdpM1b/UGuLf4WB3Ye5RbhNywVNK+nyC3RaoAokXkIuARAk"
  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.30.0/bundle.replay.min.js"
  integrity="sha384-EBanSqztu9R19+QMo4mmQgaSZAor2LtNWuV8g6bqZ0WszxSCSVaoqGnN8cZ4qTNV"
  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.30.0/bundle.min.js"
  integrity="sha384-yp56qpAK8kqwiX5BmY/+1wpyLlPGV4ag8LdEKrteZqr6Yy3xfXrq9ePvbMI4IH1S"
  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-Ycmg/9pGua6dAe0iMyVET+av0IvTlUFb2NOyTyPGrfYivK6WwUXVP2i6/awR8gx1
browserprofiling.jssha384-ZPmdqbYc7hNehpvYaywP3p/Ot1enmIZW/i66ACVqq5Eg0rY4FX4MP428nZ/EceGE
browserprofiling.min.jssha384-ZCr60E9o1MR0kPhRs8COK7jVGyS2InM3iVjp3yedYBAzcJDbu+jHOdsXBSDB1rN/
bundle.debug.min.jssha384-IDQ0KkRJk/cz5uxrpVfr/QhmDgbe5S0c5e5MLAkW+LFG21fK6Z9kUExFpKDdsyog
bundle.feedback.debug.min.jssha384-8RSszTcccDicVWWBE1MurRasP0kkxvJoZnU4CYwJB9f0z4l7Kew+iCdlUDS77Xhi
bundle.feedback.jssha384-Yrxfh8boZZI+ZXhrpki5S9imv8tYmctMFWgeqDJ1OvPQjLQOkr9/Rmtkj0Lm4hK+
bundle.feedback.min.jssha384-ywZ7Zm9MPPusELnuBPIfkvgS9wdBXBJblhKCRq+h64f4NRHOqKZlAHi8G0oC5bY2
bundle.jssha384-oZFMaKZgbnR+EDNgz6UVm+cYF55FUqsC4E3KtGBfUVUjsesK0+4e1HkiOi9wUf0a
bundle.min.jssha384-yp56qpAK8kqwiX5BmY/+1wpyLlPGV4ag8LdEKrteZqr6Yy3xfXrq9ePvbMI4IH1S
bundle.replay.debug.min.jssha384-aBPAh2S+3k79bt5mYUzWN4/5jJ0r5zfzqGms9uGZ4X04HRjraIFWUYFrQ0dcm44e
bundle.replay.jssha384-APJ8bu4WatW8lj9zsjPdksnOm5Lp95anWU2IRJ5KOfWbq3b+se1GrSOLcwx86Lqh
bundle.replay.min.jssha384-EBanSqztu9R19+QMo4mmQgaSZAor2LtNWuV8g6bqZ0WszxSCSVaoqGnN8cZ4qTNV
bundle.tracing.debug.min.jssha384-xHo5Wvhw44X8vP6YNuOOc8MxmuCE9DC3LcRTLMPpPmZqdcA4isly2kwP02L0I2QP
bundle.tracing.jssha384-vqxwCB+KdsagYN9MzQbbMGPXsIfTx7lrOUBkzDgqvmXgRk4V6uAzn5AYWTFTDWy7
bundle.tracing.min.jssha384-whi3vRW+DIBqY2lQQ6oghGXbbA0sL5NJxUL6CMC+LRJ0b4A64Qn7/6YhpeR0+3Nq
bundle.tracing.replay.debug.min.jssha384-QtvBtgseBeSJYvtkauqKMRBTL3+jNq/UrMTQiVSCAXvUDD25ylB/Ku4c9gYonqkg
bundle.tracing.replay.feedback.debug.min.jssha384-2AEYjxn/8puPpOv7CzQ6zhZ/rhZbkT/iPlts7s8V85feZTmI3+jobEu+3a+YCDV7
bundle.tracing.replay.feedback.jssha384-plxMsZ3b/KfdoGTDf4Ges86Fttrj0LrJS88UIuYEhf7Wwp1EaK87Yu8GRV9Qao88
bundle.tracing.replay.feedback.min.jssha384-e1BdrB5vLe4P8AsuwpguH1WZ/JvH+FDp8UPsLL9K/kqmUre50yoaRQ6iqIPBZ//9
bundle.tracing.replay.jssha384-ERxpEYt3GgH7tc9/yMv/7l4YcsS/9RcG8R9+NbgHPp9zdt2SISvJaxPYavnr9yxG
bundle.tracing.replay.min.jssha384-768YK8ZTTfR89ilJ9vdpM1b/UGuLf4WB3Ye5RbhNywVNK+nyC3RaoAokXkIuARAk
captureconsole.debug.min.jssha384-OjEALGCiO+CuCl/shr+XNBBYIsHbdszoEUQNwCkHzFWugH6GkbYAwhtuKIxV6cgy
captureconsole.jssha384-1MEE/09AU929pk9S7Qh2aAlaXrQTZZmaoVXeWu13LI0/a8DO3/hVyynEq8sqEbTg
captureconsole.min.jssha384-jXCzUQjBqiEgmKLzF+NxTSHUj2QI1p3bF660dbnRzt+Q0xrZXQtmZ3+lJop40nGT
contextlines.debug.min.jssha384-Y9sA2bKh38P+V7J/FbzPFEqbR/5F3Lh/oQWksiOUggl8lsseHrZkDM6aiYBO5liD
contextlines.jssha384-PnM0O3KWJpaJRdtpDNN0antxFzvUU5aU+enyc5Lfm4r2dvQVMrdwspEEhkJu1jks
contextlines.min.jssha384-vshtmWE2PB93aogmCE/c70P5EQHR6h42jw/XpaW4YK63i4o/H4zfJVKEfGPpCcTU
debug.debug.min.jssha384-YM2I3FsiKEkS/s/mcB7F7Gv90U0TtiKukvOrwj+9VapsdAgG2b1dKysVaU5afT17
debug.jssha384-4NUI1lC5MqcVjA15tzVuvUI/LDitOenP9o1bZit32s/+xZk/p1xynCBbqcrCw9Q3
debug.min.jssha384-fLdW0T/j648/GamVrF+coAYPdHBkNpHr+E9ipj5MfqZRDoatEcprCpTEZ4yqicIO
dedupe.debug.min.jssha384-JVEFx4MMDsjE8mlrUh0ik78iDJGQELWCNLVdz5rqfsXjRpPqRWT2fqz9z9QdWqmv
dedupe.jssha384-FZpphnbv+V1xLsRFirGcAL+vLw5We8UT7IQUTtLKUFtkdaMzpI6AnebWrtCX+C6R
dedupe.min.jssha384-i9xu7bfu86ZXOSQShi7V4mZfmqWaCGfj3m/ifRWvtIpYnDXdReHm+in9MOdTA1+0
extraerrordata.debug.min.jssha384-dQG75ew9+TM9WYXKzoj3wV4/GowjXO+0+HWzQWd3TxBvhaSPawOnQBbtAbTknvZ0
extraerrordata.jssha384-IpaukEW0R5jAHr9MrE6Y/+A6pVmYH26zU+/U2hYuEVBZkpDHi4EE0kt1sRc1K4AD
extraerrordata.min.jssha384-+l6HlbJ/KcLq6H4tGMK1BN2LF8WQ3HHqrBp5g6GYRafBDhjRSYuH0PCFtzdLQDCt
feedback-modal.debug.min.jssha384-O9uR2VVFaUA6nS+EJvDwqnhBNZ2yhj18UDkmoxlo+I7iJickuxNXUC+tBD0UkTc5
feedback-modal.jssha384-MdRDaJEjV/F+SGfmx81mdbKj7kEKj8pDcoMW00sLVtX7jwP1+Lz4stKeb0yHIxzV
feedback-modal.min.jssha384-42WjiIwrKJ36t9e8/zYTGvcgaa0kHKJdnBtCtGPveyvQasZ0ZM35BI6I2+3LAZcz
feedback-screenshot.debug.min.jssha384-a9XfKAIfQawZ0BZm7i2PLajmWPCOMGM8qtS+byZEpH5Xnw/pxeCSN5hP6jJWwApy
feedback-screenshot.jssha384-G0yjXC0kAu7GyNgnyu7qSZ7YpKSP/BKDKq4dCMPmy6cRHuviUmcwhvdSfdbmrAKJ
feedback-screenshot.min.jssha384-5cABegC5LZo0YsuCjLVqdiko4koysp5NEO6VYU7IXJexVLY9V7i7sWuqDqokmsFd
feedback.debug.min.jssha384-OXw8uhw2rQrOkIXg7jZyh8YKTKlTGpmR/QVKmZRHzzegM+icyfiJgROeEhnc4at8
feedback.jssha384-qx9VXZCYV8tUyC3vdzZ9iHnoCJAFHq8t7KwMkv+kabsAQSh8Qe8CH9txzWmpekfQ
feedback.min.jssha384-on+9QR8maoYZ9XSErumGV+A8rM7yh7otXKvzj1Yu9q8sr1wzK72Uaba0mco7O2aR
httpclient.debug.min.jssha384-5oONp7CeLCSaEcDZozsGgUw+09zl9qG0ptqwXZj7pvxZap2YK2zJxbZTXFJAsq1f
httpclient.jssha384-x6iY8GglpVRf6Qum+1em7p2T/hTZhGjTecmOr9JZqldLOdMaF+MGebnnZjndMHRA
httpclient.min.jssha384-K0IcF+6iGYSyy5naLPBq1dXYxD+HhBy8XbcI/iqQ5KZBUgBNmurlP3zjtzPmS13U
replay-canvas.debug.min.jssha384-wtSw5ADW4C7UfaYrCYbKASErXRtfRw9qik+fNJOXbPgUQyc/IvGAgd6zIkeoNLRv
replay-canvas.jssha384-RF152FEOV0VYTVyzGaLBziSXaYpgIUMsby338jB/oaeirDxKDPbiKU1hUwlAd7pj
replay-canvas.min.jssha384-1RNza0wLvmeDPF7x0yUVTmv26NG06C26m9bcZ9yKjxlsVBGANbsNeBh0OQ/VNexv
replay.debug.min.jssha384-Ncu8f0ksCTgD3HsqdV3Gi2miFZmnALzOTQUe+TaEBImqq9MTjGxpJUzWBpAJD5l2
replay.jssha384-1lw+Fixhai8UsMO+YMye0VzYKXjtLqCqvalQT7sVxG3uYbB34Dfb2opphjhdcLYJ
replay.min.jssha384-GyvVOvxUNNa+GiNuQKcrHJR5Ghn5avEMPCqTWzFwCPqA8JXJsz51Iv+nca54ms6Q
reportingobserver.debug.min.jssha384-7pWQKC+9bvKiTBmuTO8LlWln1rl+B0uGDuQhLE4krHg8WqicVOizdozdq11fgPx/
reportingobserver.jssha384-gB4/olvTdSDKMUgp+53ZNf5UEP21Oc9DeiSeXIgzDFgNd3MSiaDN99VCJod9Nlls
reportingobserver.min.jssha384-xr5No4G7ylXk0Jn6Sg34PJ0e/grEWM8rM9eNe5LD3xqZgp4AmJrEM36NcDkm6ny4
rewriteframes.debug.min.jssha384-f7TswsaRrJtUVJ9hjWAXZRtyFRQfVQHTJh7LrlVaiYWBsCjVhoH6B7wUwMx4I6lx
rewriteframes.jssha384-XuLrgLtC09YIbKMVX/z7VqDRwP0AZobL1X9ylsaK/qasO82sdkZ6kVYWEg5a2dVr
rewriteframes.min.jssha384-317lRiLfR282/0DEluUqQcBpEyS6y3w4zkYtmXWbKP+AmvSA8KJZfAQW+hYITxQT
sessiontiming.debug.min.jssha384-j/aGIKqjbPCIxVV5xxSgtyHbLSEAmpRd7UTeO+GRXLdgMZ7mZ1ml4Zsok8chyZmJ
sessiontiming.jssha384-1rVLxofgmOoWSIl3KgUnyZpkbh2RHVmT6y/Y1EM6huNBcOURj4AnkGrJxRgRYhRS
sessiontiming.min.jssha384-5Q1JM5h97Ts7JZqD+nCBBeJfyb8W9smoEuLrT0Ark5OTvZ7Jil1NH2a/MtUkwszQ

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