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, Performance Monitoring 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 Performance Monitoring
  • 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 Performance Monitoring 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 Performance Monitoring, 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 performance monitoring, you can use the following bundle:

Copied
<script
  src="https://browser.sentry-cdn.com/8.7.0/bundle.tracing.min.js"
  integrity="sha384-El1U6uHs+kYnjjnAadrxqBd/larZn06moHy9Mw+YiMBDusaysu66hF0PRUTGC5hN"
  crossorigin="anonymous"
></script>

To use Sentry for error and performance monitoring, as well as for Session Replay, you can use the following bundle:

Copied
<script
  src="https://browser.sentry-cdn.com/8.7.0/bundle.tracing.replay.min.js"
  integrity="sha384-dJxmSf43HczZBLC024NWeK3CvBfqLuL4bPv3lAKeMZty0jA7AHnefU1jEzx7VbUo"
  crossorigin="anonymous"
></script>

To use Sentry for error monitoring, as well as for Session Replay, but not for performance monitoring, you can use the following bundle:

Copied
<script
  src="https://browser.sentry-cdn.com/8.7.0/bundle.replay.min.js"
  integrity="sha384-twhbBBjFengmeZo0cQDWhAkKz5rsmLnvmixI5gxCWJjzwAxZOJD0/vTTuyFMtZYW"
  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.7.0/bundle.min.js"
  integrity="sha384-jKJvEneJ+gubP1DU80LdsRlB/wCxW+tWQpbHB+5oRxnwjxlSr1I5yI4pbliQi6yo"
  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 performance monitoring 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 performance monitoring (named bundle.tracing.<modifiers>.js)
  • @sentry/browser with error and session replay (named bundle.replay.<modifiers>.js)
  • @sentry/browser with error, performance monitoring 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 performance monitoring enabled, compiled to ES5 and minified, with debug logging included
FileIntegrity Checksum
browserprofiling.debug.min.jssha384-/e6SgdOmlV8OvBxBoW43GOGM2RPzvCIlsny5WnlT3ZYj8x+APLqfESiCXP6Z3I0X
browserprofiling.jssha384-Sq2E7R4hCNRIH22hXY8VskeK6/pSzo5Kdmdp77ksVvXoqjCymdQ2JBc8olqsfSlS
browserprofiling.min.jssha384-DefdPedXHD4nt3bYNFVtPO7wE8AVdl2Bgx6FChrtIR2vy6V8DxGubYs+IZari9tf
bundle.debug.min.jssha384-OHPM+gUNB8W5CssUAd2Zm6bppJAvBbBDIEjDJTSCX6VZvqM2PZJCCK4I7wqfRBlN
bundle.feedback.debug.min.jssha384-gkstnlPVgG2JxJmkb6UYb0miwcWjdrEvU2uIKvLEjUvCmxr4ctBPuANoeCPnnLyk
bundle.feedback.jssha384-4jQBnGjEWzpsY9iG7X6yNIebDJBsdtUB/0D8jx2NdZ6zj0DLyqbGZtP9WbS6tfo1
bundle.feedback.min.jssha384-If5t0OtWMly236c4qvXxYalt8pOLHOj9qKZaXu/xDqMqJ5xmdMCwVwXP6dlPyALI
bundle.jssha384-EukQBWwFk1dehmzU2edMXnBUjAaOmm0U56SPCeDoHwdXRJJvAh6KN3kgxT77k3qH
bundle.min.jssha384-jKJvEneJ+gubP1DU80LdsRlB/wCxW+tWQpbHB+5oRxnwjxlSr1I5yI4pbliQi6yo
bundle.replay.debug.min.jssha384-Hf1sYuLCMxDYKR2rEDnb9yBQ3aEtoB5Zz1/YRU+6Npb0WAo8MoJIHCD04wqScy2p
bundle.replay.jssha384-+RSEGVxG2osHwBvcotO3CxU3XdPqYrUUkhhT4cQ1WmC8e83ejeXHw6vr9a3Mhe2H
bundle.replay.min.jssha384-twhbBBjFengmeZo0cQDWhAkKz5rsmLnvmixI5gxCWJjzwAxZOJD0/vTTuyFMtZYW
bundle.tracing.debug.min.jssha384-bPUlAI+4PEJuniuCzwBfjHX2dAREV6nS4gs3tQjE8uCZEvc7MlnBXTJbzUH/IBUX
bundle.tracing.jssha384-gf2xODbM6lMZWQTELtkrl1QOtxdi/ulhwSWvHkUCyRTImtvYWxObxiO9Q+CPknN0
bundle.tracing.min.jssha384-El1U6uHs+kYnjjnAadrxqBd/larZn06moHy9Mw+YiMBDusaysu66hF0PRUTGC5hN
bundle.tracing.replay.debug.min.jssha384-vfxb4RV9I7A8m/CDaC6pi4B/Cg6BRqEJdVerU377+CBP86Eb4hl8B6z4UleL0XJk
bundle.tracing.replay.feedback.debug.min.jssha384-awMkF0Ay1lwi2bYNAQV8gYeIqCVbHsCrhyP9QWT7sL14S37LnwzSrKvjI2B0NB09
bundle.tracing.replay.feedback.jssha384-d07DA5NdrYnlej85lWSYJaVdYuWlw1w2m/airoHkjN+ya+mfYqvKR3bF5AmSQsyL
bundle.tracing.replay.feedback.min.jssha384-EdTlDs1y0B2z6oDPxEhsi9MkH/ilAGCs4oLmreRceSbJ2TlSjo5020c315FWNIYJ
bundle.tracing.replay.jssha384-DQBBH7zVRCvp3Th9Sse03ZpQMOo52oYWoYF8ZdqyobiftL1TueA3WbahprcKHTYn
bundle.tracing.replay.min.jssha384-dJxmSf43HczZBLC024NWeK3CvBfqLuL4bPv3lAKeMZty0jA7AHnefU1jEzx7VbUo
captureconsole.debug.min.jssha384-CDX2L67MDwgIxgZ9oKZNfcNjxruRoRh1D5A82WZmgfXet2T7rZJrbAvTAcxGWTSZ
captureconsole.jssha384-NlCWyub4Uuai9hqi/2DR2J48x9YR24qdCDA+Rw0f3pXD8R3tLGzSFIy/JzoPtzIn
captureconsole.min.jssha384-RLdjHeh0MO0tuVuxJ1AVxoBRMOETvfHSShh+2Q3pfAyEt3fObtnxxxjjNuTk4vC3
contextlines.debug.min.jssha384-Rn3CfSXY3jaX7wzCx4ToLFJCAkT++6SqDx7F41RVc3k4g1SULJ93Gcx1bJXEyUdk
contextlines.jssha384-DLPKFnY0Vm0vEwo6Uuiw3yWhmJ+ExVr0qXd2aF/z7HxE19nuVUd/KGPhZgGxcpcf
contextlines.min.jssha384-sMN3AdQ30p++bR/HTFEhVo1J01eAxv394gGWisrP3YLHCf1VXOHcJu7H7RBbjznm
debug.debug.min.jssha384-QywW7I+bmehUispUuUQjapPfSIT/irKNgu7MDXoVt9Eue3GDGHMhSjx3470ZyLgI
debug.jssha384-iHYfwfcffslI4s36bXrocIviOeOZAeDkFVQtq6cIiW9+Cm6u8NUtmDB6MISeSnHr
debug.min.jssha384-w5jdY/ahUS33VlOYDMNYJYrJWei9GCk7z5CEGTFW6uaF6SN6jfs6m9JCYciHcpLy
dedupe.debug.min.jssha384-Vym19vPoCBp8FOpcizltoZj9gz0bURocC6UXK/Tb6B0loOMM4nB9bAVVjem7uM5O
dedupe.jssha384-7N8uMJv/23MmHcBA7kiR82KTkNMZcodinTmPnohaGmj9VeLTShla6KiouMm5SIx3
dedupe.min.jssha384-opysqUhef0vaWG1HHmLKYOYkDOc9GouFnHDLFU5kpJ68Pagd3O/hE+c75n+fDD/k
extraerrordata.debug.min.jssha384-UznqrGi+1uic/NdqAnyIFjVVFbD9BEg20kxaOHM9YutPqDfxWRuSbeODQDynU5Be
extraerrordata.jssha384-qbCJOnMYBc/L9n4MmgAa7+vEUWTgNmVieKgeGepAK4SywnUSK8DMSFgakA15PU+i
extraerrordata.min.jssha384-d74QwTKk4b46PzlyMIbcWj0NWtSljv5risE4YXRm9IH82mZFe8fpIuTdLYLFXxIQ
feedback-modal.debug.min.jssha384-7tTAyne2oZofnF/rZ3dZHi5RbH5cvBIGE6Le7ZEkT1CM9LoNUB4ZYJ92lNZjevCF
feedback-modal.jssha384-fWf+ac3RZcOv68OnH1AW+6pR/K/APowJRldNFNswdwLJhSfuQ4d/zuKDRweajYU7
feedback-modal.min.jssha384-TeydsGwhzEM849nv0tIA7dRvBC9Pz9+mjjjEPiToCQ/sLqIwt43xzmEJVLvdNYHV
feedback-screenshot.debug.min.jssha384-XnTI6mMFFpCsip+tVf6imxiBxPCRuphGiymjQdC3zCzn8Q38oepU2STrhPlvLF92
feedback-screenshot.jssha384-ocp+dVavIwEZcge4Q3x9FDcTMB08OaEbnINY67wtggzicQQ1eiybaSpfXt8+QiaH
feedback-screenshot.min.jssha384-LGLNAlXMWjj3hDKOzmT9etjrt/Nhspi5yaNI0Iiw/OmWCZV14MSLFWIJBYaLMOhp
feedback.debug.min.jssha384-PTRVhnDHNEkYf7eCUxbcPOiN2jxAduQBB5flQNOGQcH7wwa9GRL73ph5W5hA+I21
feedback.jssha384-7KzmpMgWcoVjZ4FAiFKH/AU0uuW2Xx6p+BSxxzTVg81g8sCTO3E/D20Kt7C77Oef
feedback.min.jssha384-hGn9ZsyN9QuRaoAB+fSsLDHk6dK6TRTwjhxZNls8BM1bM3gmOv8qdR0oqprFfNTo
httpclient.debug.min.jssha384-aoTAF5Don7caa9SG5853StOv9s5wVtKYEtb4DcJ4sqNcX4BQ8RzAC1tK768sN0Ts
httpclient.jssha384-ESGFfwKGRA9p6Fo1fCi6RjCRAlOk7gZU5GAS8GV0AvKJ82pPAHfEoztHhINOaWQa
httpclient.min.jssha384-AjzHKyvDUueVBEim4k8wt2/8SwWuk35n7MI4LPGdjjYnyYZRvRHnE/fBEngoixaa
replay-canvas.debug.min.jssha384-WT5hHXEqIMkCZlz0mTGy+VRjXIZFTnzMQS2UBitYWCwBkeLHxAhwuT/BphS5JLUh
replay-canvas.jssha384-OCf2UoLDLra3o4RNgJ8RnrZv5VX5sG9t8Iv/MxQGIEmyNzAZqGn2cl3GcfRAqSYl
replay-canvas.min.jssha384-VVEeS03iLDE522u6jZtwfJEjiC31WX2JsSSkaUq7rkrPzzCQKf8IgmGsos4zp6t0
reportingobserver.debug.min.jssha384-lssjPDqBsgCSczSIiBupqm8Qj+yi7tOyTIfnUEqSps2pw/B4UmZPPzN3X1KSnV0c
reportingobserver.jssha384-JQupgRql7XFOygL3B4GFuNA5cmpaWCrFUIGZG0kmEzvTYXtKiWfGbDL7Pkhq2f69
reportingobserver.min.jssha384-1mKTDDewQZHkq+WuZE30DTQ0RsvTgEOc7HN6+dteOo7V7kE5g/xr4LO4SyGnsUhj
rewriteframes.debug.min.jssha384-hKANMQzAvyKYQXo+tYdnByf4UvrBRjBEqMxVFe/llh2FtWVEdZioT7dmB4GFxoNh
rewriteframes.jssha384-J9e/IW4FGBBY6T98NukDSAeTkN21KiOY263y2s24n7l/99R0XPMRpZjCHghHpDD1
rewriteframes.min.jssha384-wIntnBEiitrNdQVep0PRjXDva67Z/qRHmv4m9zx7S2oIi2l2CPem64FnJMMVydAq
sessiontiming.debug.min.jssha384-tkwX1hdl7ZshwBovt4yVfOLcBinXMxEyiUG/ekocEzD+mCC5V8kWROcMBGXtQBlX
sessiontiming.jssha384-f/zc3eVUn6G7YAmhTZ2uTziAawJxojDnxBi1XahRGh3NZxHED/F5FuB05sG9r5Hf
sessiontiming.min.jssha384-dL0cQaWjjkasqpdt4mPpLV2eCTmAaTUYNi2aOsD+L38yQuZbHQgRmVA/ktdZt7LN

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