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.29.0/bundle.tracing.min.js"
  integrity="sha384-6yzL+SsRi1vefLAU9+yqKb0YIeAiJ6GsCob5LxN8Af29Ze1Q5iCg0Ur2fwFroEqa"
  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.29.0/bundle.tracing.replay.min.js"
  integrity="sha384-HwgjCfBTMWBP1kmOD0ptM4HOMc5G/aH0HwBn8wMi45vsd6wU5oAULaCC/+vppiET"
  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.29.0/bundle.replay.min.js"
  integrity="sha384-/1EFLwNK9d6PYgfl45wHf9CpRzx0WPXjR3RAG4+iOiDASxv354nZoqVB44rNfXPF"
  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.29.0/bundle.min.js"
  integrity="sha384-BmHC/bGs5Y7P484kJlN/L90rweG2yO9v7o7wPtaYoaS45O+izXPWz/ojPP/NK0Io"
  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-RK5jokwBwiOQBiiJ6Fy85cAbaUzZfApTtUMItg7ufGCMhr2KCnugObUmjF4F1+1f
browserprofiling.jssha384-wshE/f0wadrrDZiKEdRVpaoUTvuxdbHgOyUNnaYVckaCI/wwbxzLfubFHy9kK5GV
browserprofiling.min.jssha384-xu2shpBHHuQzB2viPpKJEg4mavewQw6HSKzDlFN40/q6GNtGoYSGGVnb9Oklk4XE
bundle.debug.min.jssha384-FdeZ7ErHhpycFS3yLYeKYvGtZeo0FP9niFgaWgSEYteY31GprlDeWQ5dCOBrCx7z
bundle.feedback.debug.min.jssha384-draP/aPZADwC4h27/J43K8iHwJ9GqjvLCvC/8v1kVdG+Veixoz5m6K6b0nr9a7zR
bundle.feedback.jssha384-x/LWCyQudh/NWPYKVtT7FS0SpSNZ+TfXpYONLITLjz80cROzMaPmjToa9XPvr4Ah
bundle.feedback.min.jssha384-e5QKwps1bR/9ukyYZSPqPfHEusc5uDEx3kYUuwFISCCvr7OwJbKdQGl1hat/Yjf5
bundle.jssha384-9bt1ZlNQXOUNbe24Em3+wfJmIf5tatWTzDwyvce+DQb9xBf91YvwinI3IpwrE1mx
bundle.min.jssha384-BmHC/bGs5Y7P484kJlN/L90rweG2yO9v7o7wPtaYoaS45O+izXPWz/ojPP/NK0Io
bundle.replay.debug.min.jssha384-6jZWgS2ynKMZTItPrXDAmo4so5/TzMINqowbv/JzKtluRF8WjdxORa0dJFn321YP
bundle.replay.jssha384-bHX6F9vGq2zhW//EcjAyyB+8cjBV4TBRakIij5erCC+xm6gTIWeC/zHoFc4lTLDc
bundle.replay.min.jssha384-/1EFLwNK9d6PYgfl45wHf9CpRzx0WPXjR3RAG4+iOiDASxv354nZoqVB44rNfXPF
bundle.tracing.debug.min.jssha384-cWVmGlUqW8JUfe/TDKHVAxcgEiZ05AThaChgYjKcb0Dd0ZzoOYEjr06odT5zRwBZ
bundle.tracing.jssha384-IgvhcWxBcBM1HXzf/BGNlaa5oZv38lb7UpAmCSssc9SRJkbzePuTC2CjA8oorhir
bundle.tracing.min.jssha384-6yzL+SsRi1vefLAU9+yqKb0YIeAiJ6GsCob5LxN8Af29Ze1Q5iCg0Ur2fwFroEqa
bundle.tracing.replay.debug.min.jssha384-A/MqQFc2IbNeb92Q/VLlq3NdFHGHJO2NfKkQ9zvi62cNeLCDTxvQqgR+5la3qdmH
bundle.tracing.replay.feedback.debug.min.jssha384-NwN0McPvDOewER7n1duyw3qO9Xf+/eUzYwj2zRwCBvOT1Qcm41YI56i8YJL2BNtF
bundle.tracing.replay.feedback.jssha384-fmI+fOahiySXIk3oEqG79Fy5x8UfxTuFaUhsELfA5v8S14EG92nyPpi2wlYwiK5R
bundle.tracing.replay.feedback.min.jssha384-tlpY6ojxVpdsvDtdtoOGXyevwqGQ5pYdCG1RRNXwFrxAFUMYoXXyowNmc6qzX473
bundle.tracing.replay.jssha384-XIAYgqCZa1b1jsJwFjaIpAJKcEYEJw6g6Kj8k4CA0eg/MAxfZu/wHCOEG8UH8lbo
bundle.tracing.replay.min.jssha384-HwgjCfBTMWBP1kmOD0ptM4HOMc5G/aH0HwBn8wMi45vsd6wU5oAULaCC/+vppiET
captureconsole.debug.min.jssha384-PaKm00rPPHBukmEJSjRrmx4rmRRtCm7zeM3ICp1zGPI9CbP/EcQoL88D1DLKBzUp
captureconsole.jssha384-RhbtBhidhGnKlvIs1OKq0qCrR6lPScOIG82K9fgt4yrXkgD5kAf+rDAL5l05JCaJ
captureconsole.min.jssha384-/W4tg5ejtzZQU++HIHT3E8LVerxS8i7iO+n10DlE7pg93k7yLR/sjtjeX0YOzY91
contextlines.debug.min.jssha384-YiNqtIicXtTr+/mFrUtyaSPnPrY8YK4e7GMYOURgFGg2CLp5QCmUarVutfNrPn50
contextlines.jssha384-NY1tv1C8gGUbMpATzuEBZJYKxmnQKjgsyPHjyY9M6uQ3nlTVVLkVt8CcP+asRvDQ
contextlines.min.jssha384-vMU1a872ZYYZhJfpxamg28CenmJcwm+uje6o1Z72nEvSqzGrNslm2bJelJJtDQs5
debug.debug.min.jssha384-Bhi+/0ldCmsdNAEAjwO3w+UtsV77rmozCtiYG/Sv4qD05tbKfNGDmrbqIM60+pkc
debug.jssha384-OH7XOfm1oBc423VLFtzuZk/dhFXQmTQTBIOdsaiIEOzwhwiRVTCkXWTAyV/RBrUG
debug.min.jssha384-Bi8Guy9ELedZTqQLPDQPuAhlsyh7LMdXjMyDgKvIY1qiW6C3rMAThKlKUy5TjV7S
dedupe.debug.min.jssha384-q1F1cJ4SoHuv6LrEBpt0goHjtTS0qfhaTBbb/ST6cMLfcV0+MOlIDZXCyHrmKuOH
dedupe.jssha384-JHJf8DkeOaADiOTwSiagt9BHgglZlIo8766hCeKYGnSXAgDq8zPbyKrOqCVZoQtv
dedupe.min.jssha384-tfxR8HfECmMMaC+eq5jYXtX73tg9jVqL1oqXNgZojjz7/FTIx1GaJJdtbYusoJXM
extraerrordata.debug.min.jssha384-G+LXSVzDgQEBV8X4C1Qj7NUx7Cjz1EtUpWjSUuXv0WVzPTSE01mFvB8Mdkf/wp8q
extraerrordata.jssha384-//FsJHFIMZln69kn6nGJBvsNLbf4KskGoc8Iz+baNMMx4o8qAvQgeKS3SUFb4s55
extraerrordata.min.jssha384-Zo8cMdZohOTGYvO1korYXQczq5GMuVwaHFWp2oN9j8D8dXsMCMAz1ZdLIy6CCQoi
feedback-modal.debug.min.jssha384-d5dp08uTOAZjNAVKUThzS/cYvPXpp9o9qq1dfcS9DTJCgHM+8Yoa3sEzCd4dBMPY
feedback-modal.jssha384-x/lM/icyhc8FfPtbq23ryOdfnaiqT0abbn8FiYzKO4LW3ZSUIU/PwispMcZaP4Ec
feedback-modal.min.jssha384-hnlOS1dCfPAgnCKeu1nJ1G1EyU4AAzxvr00x2n7JzEgP7g3rWSApOIvzHgyGNpcn
feedback-screenshot.debug.min.jssha384-Y6pd1zDt+nUpANlMKoZ0zN3UOPHPV2PxiUjGTTQzNivfWnG52cgEQ/GjHhqpc+dt
feedback-screenshot.jssha384-VkkybrRmvqE78nhDZEAxSacvcUOdTxoK+6JDZZ7XQu4Yr+i4gVAMBnRFXDKMl9Sq
feedback-screenshot.min.jssha384-lyQP9R8dF/Sx6beEMyQIo+IX8cepLHGynFBP885/VNN0zaF8qf1RRusXZNRjOptX
feedback.debug.min.jssha384-tLpifMnbZe6mJzoHwIKDZkLvugi3nnkvqKgj8zcEsMHXMSqNYoxvFpa7O33AkqwX
feedback.jssha384-U3zUoX/GpvJrX1bs7eHwdAERQQKzqpI3wvQsLfGXtOU3CTYiNJ/xdCaT8r3Q1e/V
feedback.min.jssha384-pgD6hTUrFwYAI+Dl3koeUznT09l9gl8krGwl9KndpyYsSj+okIEozMWNkxwPZlbF
httpclient.debug.min.jssha384-WSeLPUzQA6OBN8IBGG1ek3+9+X//hw+/2+F1Pw9JnL0KYEjZ7fhwt5JRxMiRbKHT
httpclient.jssha384-WGi6esGs9w5zW7G1rROtsMyVEoKVG6oeLYw+y6C5oH3hzoH2FZb7nR2N1C+fJRX6
httpclient.min.jssha384-t3eWxJGR4oCjCSuxjDmtKery5ahSBc0WAFy4gFBJCkfa8/CcEJ9UsXFxaTe16oww
replay-canvas.debug.min.jssha384-f6Jt1hWWx06QpAvbz+iCJUAPFxDrvPngHt5kM7K/LIuLTv2VB7dfaRFuwdUZ9OtP
replay-canvas.jssha384-CrSl0PMfmWTR6NLBCbVGL+uAhBR+BpbKBVkJau/jHitwYWvCMBj2DgmAzgyEC0KJ
replay-canvas.min.jssha384-6Rn6UH7sFCcisI5AimeuLOTOTMNKcFNr3m9Bv1hPn1ccuXaPnLciNQNw/RTdk+EK
replay.debug.min.jssha384-mvL/s/UOK359DadHYuzIIBNAvqg1kKP4B7YvuKThol1YmjSW+dLpmR24GPGCoTFy
replay.jssha384-wDaDFY9YwIALAXrBi+bRmcjxFmf7EPuWiU4/SnB2XTOzVU+JCxXW7R5J64iHkBVN
replay.min.jssha384-gB6eIxOmlzW1FcgtG32zCaLMle12BREUwigxmJ6aU8BlVpTbvRzd4BUvYn44+SHI
reportingobserver.debug.min.jssha384-ibWDcY+szM8hYqcQFT8V4/tlgrnS6iMn5MvbJgmkTbdmgGMrBQtLaDPJbRwweDPe
reportingobserver.jssha384-RSh30ynfkBJ2aIOWOkgfga2ImFsXfZ5n/BMMDs7ketIMVxk3+70eSgat8eOCe8Lp
reportingobserver.min.jssha384-8FkQ2QHh3LFkAwnptRuBcZjqH74OIz08bm6wMrIjiNyM59byLHlotFRGBc2lvA7e
rewriteframes.debug.min.jssha384-vfppebmIlij/ZKHg1WkKkATu1X8sNu/fZaN729zQf+gJpJdhTw7SvgkQ2sO6Qsis
rewriteframes.jssha384-wPhYG0qR+RQPwRn+jyXttKQtEJ/xrHj8WIXFF8KrG1fWUEgnOhu/YhgE72fTOZ5s
rewriteframes.min.jssha384-oFLGrLhhQTLydpL/BexzPcilA4R6Md7SP6ruN1IknE71vIPcfcpD99JVWJsPbBQ/
sessiontiming.debug.min.jssha384-uDC6nAgy+kqzgWv/yWDpuDelWr7MNaBolo1vvma3eW/cNS3FIGTBbmnpmxSYltGu
sessiontiming.jssha384-752SerN1otUanonLCC3t84dDYWXti2B83Mec+1aEAXArBMqx8iZt1R8SaFYuzNf6
sessiontiming.min.jssha384-9ivby344Ko10FWVE5EIX/JmA1PfBGBTRa1TzRoEOPdgM+d3iMlRm/1OVBjVXipLl

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