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.5.0/bundle.tracing.min.js"
  integrity="sha384-OLg024p3j9yCNt/SZo6VOARgtcxFqNvYHXJXWepHXRCFElY5ujmf+siOCt7sdX8d"
  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.5.0/bundle.tracing.replay.min.js"
  integrity="sha384-vdM6igQbPXzXaU5L59OaroWYnI2uoyatJELPBe/BeXXy2OJwFrEH/XCgiAhqokP+"
  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.5.0/bundle.replay.min.js"
  integrity="sha384-JNqjd23z/eRg9QR6pDujwgUTssJQ0bkIlWVPyrlpQt3cD/LqmnH2LCtVWjZI3cxa"
  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.5.0/bundle.min.js"
  integrity="sha384-CvL0/ghPzoo2x6NgP/WcZdc0PPQFXFj932x7g2Pcbr9qNgoOvYhaeBjBK1w7iZWq"
  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-QHggTtL7T3ViGBkOduJHqvJz7HAb8bNu1VoiUmLZ4s1N4RnHkhbRcABp1igjm6Bl
browserprofiling.jssha384-OUZr2A1d3i2/iJJto/4NGgBftCRT+4raUfD3GeqPPwK38auruxWYbmSZIlF+DveW
browserprofiling.min.jssha384-e2WsdA/44Sj2SM+1FYTP1B88rqMxr5QzlD2pY7MgYW3ZJlRTnj7Tt8grF6nMwdrH
bundle.debug.min.jssha384-xu9qf/OsxA86ZqeMtzJChaYAuYFCHL5FOrckLsOzEl2omcwgXUrf8taCRMSotze6
bundle.feedback.debug.min.jssha384-k95xdVtCydmoAvtJZ/0WHHd1l/7Ln2LaafiEvADt+8m8Um3gbvbMYCoFlQydqyOb
bundle.feedback.jssha384-39JUJIyjAjeozmbbjwQJ23pqebhhvaK8gaT7eSAIcvtBjh2ljI7jGg0h2dX0wIhK
bundle.feedback.min.jssha384-7tHqtr6cvg+pjau6jDSP2iRXH8OrLfvjwxniNo486Io1yNGU2UtWqFErRuOdEcNY
bundle.jssha384-fL8mYXQU8VN37Rhtdxll/ur1Vso4fSnBm4V17kTUTBYIicHYAVzy4JfqRHGC+UC+
bundle.min.jssha384-CvL0/ghPzoo2x6NgP/WcZdc0PPQFXFj932x7g2Pcbr9qNgoOvYhaeBjBK1w7iZWq
bundle.replay.debug.min.jssha384-B3ezFc865kOIVfhSTQdwZWukBfhjR5E7VPDlOQWVyNae1dKWqLLin8C2dzI4Ey0K
bundle.replay.jssha384-J8RKyMyz9jGlh+yPj/6MkLXaen2gzvswB2m+vLGKsvy9KFlLbzfFRDOHWc3S0l7C
bundle.replay.min.jssha384-JNqjd23z/eRg9QR6pDujwgUTssJQ0bkIlWVPyrlpQt3cD/LqmnH2LCtVWjZI3cxa
bundle.tracing.debug.min.jssha384-s0WxU/TTDYtsdo2EolxUmI4QoZ3B/62U9ktmcxDe4ivOkXx21idReAY69wNKLoum
bundle.tracing.jssha384-0fcjCiApJdYWeWr9CCICP0tC37XYaP8mQTREKHs9wBZkmGhLjM0c5Cn1sG1i67dd
bundle.tracing.min.jssha384-OLg024p3j9yCNt/SZo6VOARgtcxFqNvYHXJXWepHXRCFElY5ujmf+siOCt7sdX8d
bundle.tracing.replay.debug.min.jssha384-/g3oBkFm9jNbHskohJ7vgvSt/LoIHCi+jSZWfsp9dM1b2UBbhEWoAN6JmkBMnhUd
bundle.tracing.replay.feedback.debug.min.jssha384-sSPhtvjp06NJWZNnDEYeRxxd28wqnSBUQUG3cyoFsz03jA+QVk4ckzlQTB6ZK/GE
bundle.tracing.replay.feedback.jssha384-niXcZY60nxKLWl6oyS9ZoBvoeKF3XCwpmg5IapJjWvz0oADFVbC4XlWHP444CVPG
bundle.tracing.replay.feedback.min.jssha384-yzywFLw6q4WqibPT74ngKBL5hEZMMwejfGnvgAQFAVjjQ0SU4onhTe8rpz1JfliM
bundle.tracing.replay.jssha384-jUWFKbXG1DaI2UvYEMCXo/UAi+rqf/pgHDriV/XHHaqz92Tc2YJ+bFQ2WklH/Q9i
bundle.tracing.replay.min.jssha384-vdM6igQbPXzXaU5L59OaroWYnI2uoyatJELPBe/BeXXy2OJwFrEH/XCgiAhqokP+
captureconsole.debug.min.jssha384-qH3lar+Bgtp44fTirfLJD+C/nbR5CPscOeRxaREoUA49CTR8m9BNlSBbqYM3iVdv
captureconsole.jssha384-tVGfI92J62tAKPUT13Y7RbVARQd7AgXEfHGHJSLq9HOihIC9Do33+8Hf9kgsl40h
captureconsole.min.jssha384-Cn9gSdns9WwBEFPwouigjQN/S6xY3OdzqLv2NaI6zCm+wBrK/goWdl5VJGZoDNXZ
contextlines.debug.min.jssha384-1hfwYH2yQsIAtduBZYkNgapbS4SoQ+7oYNXqg711+cd1frWiurx3zNkSffYYbZ+6
contextlines.jssha384-omxThpz8S1AN6TfvlTXRoZ2mjUjYXTOEtuauzJFeXNFI4McSbMaH4ZLoIBxE1ffu
contextlines.min.jssha384-hNriS7G0PD39953dCWsFQsaZDT2NVT3aAd3bZBa4tQp+SebDiDl7HHK4OFwSfxEf
debug.debug.min.jssha384-w1xYA7xqMuTeiGXB0ZhymyK4/tfpx5ayOsH7v0iwpWhnbumpowGgatw5sBzuzjZc
debug.jssha384-FVnc0c8HK7P+yzl6gSPRt3ak22x6Vg9wNvCDiF9ZWOQIisVaygZSKXpNGHjWIGOw
debug.min.jssha384-+zLC6WsaM2lGHab2nsO5td3cUTXQ9E1vOt6ek8E/m+tE1xbwfSTYf+OAmA0j81mo
dedupe.debug.min.jssha384-b4+YFNiuCbGUHosnmBagFZAzXgfWZ1jm56/OxBienEySFI8yXny1FiAKUNJrWHBu
dedupe.jssha384-0MqSxt1oHt75W2P3vIFH+XVJTwVSq5sdAObwG+lP7Q7wFGY5/0xWhnQSOgk+9q8P
dedupe.min.jssha384-rw316gQzg9iv31mZZBT975fGgKGQji5UmqSLBNIX5wt76aiawXvIMzA+sDRd/N3V
extraerrordata.debug.min.jssha384-S2t12vxhoeylsVC1MqeSIy7cdwzvTtTMeAL22mI0P0MrRtV4ZKHPW80gybt4b8LL
extraerrordata.jssha384-qV7sjtM7Bnme2kyM/EdVXFWkbOd0xN+DyxwzqgM1+kIOtEX+wqtcO48UFmcMKGgP
extraerrordata.min.jssha384-E4l4dHJqZRNslhgKWPG4hNZCjQCcXQEpncnI2bx4pJLCGAareKBiDSPHFIOo/WkZ
feedback-modal.debug.min.jssha384-XkrlMEBa4Cqk55sPufjlZnH+g+obF2eneGUu0122lcrfTiR4gvivWdzjuaO/CWhc
feedback-modal.jssha384-qS9L3mIi1Aaw3VLIQgG5GrPZJzL+U+pPfrFmTyP0wuxOLG+fJDOH+LWyqsUZtH4e
feedback-modal.min.jssha384-qGfQjO/lGVon2Bak6uZeiYTyPwskewtFx+9EUsm8bcdIqWIcz/0dz59XLNbQc1rX
feedback-screenshot.debug.min.jssha384-aWcui2c/2zt8cPvnUxT6dwjM4514aPsYI8csXy4A0kexrrxLKIYBXAP2nMwEhtX2
feedback-screenshot.jssha384-hh7+wel11MnrpRIUnfE+KpvuJKIupQE0xOjld0YB7zE0LurQZAXjUQzTz8wbq+zK
feedback-screenshot.min.jssha384-TFy2G+VJbqdDXGKYetaYxyhu3g5jRm67x4JDVKIcJlOnnFcdfcnDtQNnIw2vZGHl
feedback.debug.min.jssha384-sIW76DCgqiuXxWqnTt5XG98dbxChfFsSHZQ6FQiEVUJVRhZ+bHsG1lBAkuFYqmNw
feedback.jssha384-WpzGwNza3gjOYlp/BpEFfFqNDiJXijYvEwyh3LM8LY5aLtdNAqsAMQFscWE3Fg05
feedback.min.jssha384-BJXUQtGvQ1iF1Seg8PkAaCznioQWevoH21Q9ooLnDhFXc8zEdnqyiXzhz4TJu/cl
httpclient.debug.min.jssha384-7mg/bqBJysYduPnH4BRXib/Pg9fguGyKdN5S4QOyD7XIPE258qzZNBWlwzd4KNQF
httpclient.jssha384-1oxaiw8R/IMFt957N55qMLkiqv1nv8e1Y8ukB1zf7QE2jeIvsqfV9WhnfcToXU/v
httpclient.min.jssha384-wBHX/GxPJ5JkumAncDJfhDmjqyiawcwjoguFBWWZnRnpGLTtbLsiomyHGrqHoVkv
replay-canvas.debug.min.jssha384-6s1j4vYhw9vexAH1WoiwrN/r1m+S4oxHHIdJexI2AL1O4X9AtC8jYT6Bk98v4fW1
replay-canvas.jssha384-dLOupCgAi3JZJsW36NCTxd86aqtAojYmrxGjYYaO3kBeziptf14YdL5YkAEipGV7
replay-canvas.min.jssha384-BA9NntLV6uD6WfrBvCgSCUYAEVmVixs/+Jr80iQIpIhCl77/hpxvIHnRB1SPXigj
reportingobserver.debug.min.jssha384-VDsfIH7TvOkdp9TwlQKgOMfEVRLlFgrzec+g4/yZ9XUVtZQGkv3O+u+sg1XZflPx
reportingobserver.jssha384-/CxyCpwoEJuVRnV8xEhxVi7b7+lL7oeLXNL+zBI0xNlMCdQ9iE3BLgslrvisAJto
reportingobserver.min.jssha384-dguwyqO90BX3RtN9UnhW/R7FODD6UGIhHTywGuGPB2TvhHnZvEFxHQswjPTwfyHV
rewriteframes.debug.min.jssha384-byXvIgruhOtY7rqnlO/fLnS0vzMf/bsOHq0seAqPdRiYIGHsOZniSWImbUQa4ETj
rewriteframes.jssha384-GTxxu2yF578QAdmeu6xexQ3IPiYSOb9RV9zY8uDUG0lBtCWprdoSFPUCwD6woeIt
rewriteframes.min.jssha384-/g7YC1IuUCSANnJR3XSucC0kzYaq8FebS616CsCPrtd+/xn3JIkY6efFw/2bRhgp
sessiontiming.debug.min.jssha384-qY+J5JTFsjtnTMPEU558pvpVa5P3rtnCLsRBCf9oELKcb0mG1nzx38LhMw8I83P+
sessiontiming.jssha384-Qt/U/rV2fOqsVRQmlrWHocBK/0KtSxc6MveebsbrcQzhUiUKAP3+1MxPF5OmM7xK
sessiontiming.min.jssha384-H0Cu7sE4XjXRH3VAAMi6xerfiwlL0dNnr4Zd91Fr0K9U5jOss0cWvpRafI6Kbcb+

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