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 disabled.

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
<script>
  window.sentryOnLoad = function () {
    Sentry.init({
      // ...
    });
  };
</script>

<script
  src="https://js.sentry-cdn.com/examplePublicKey.min.js"
  crossorigin="anonymous"
></script>

<script>
  // 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
    });
</script>

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.

Because the loader script injects the actual SDK asynchronously to keep your pageload performance high, the SDK's tracing functionality is only available once the SDK is loaded and initialized. This means that if you e.g. have fetch calls right at the beginning of your application, they might not be traced. If this is a critical issue for you, you have two options to ensure that all your fetch calls are traced:

  • Initialize the SDK in window.sentryOnLoad as described in Custom Configuration. Then make your fetch call in the Sentry.onload callback.
    Example
    Copied
    <script>
      window.sentryOnLoad = function () {
        Sentry.init({
          // ...
        });
      };
    </script>
    
    <script
      src="https://js.sentry-cdn.com/examplePublicKey.min.js"
      crossorigin="anonymous"
    ></script>
    
    <script>
      Sentry.onLoad(function () {
        fetch("/api/users");
      });
    </script>
    
  • Use the CDN bundles instead of the Loader Script. This will ensure that the SDK is loaded synchronously, and that all your fetch calls are traced.

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/9.34.0/bundle.tracing.min.js"
  integrity="sha384-cRQDJUZkpn4UvmWYrVsTWGTyulY9B4H5Tp2s75ZVjkIAuu1TIxzabF3TiyubOsQ8"
  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/9.34.0/bundle.tracing.replay.min.js"
  integrity="sha384-gHcGsjf15+oILUd/CRoMCbLIjr/uvLY+dIT3+olcPVFtghwoWJjtIHCrDMaOkdbN"
  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/9.34.0/bundle.replay.min.js"
  integrity="sha384-lZ1G75zByMnlFeZydgHd7zf/yOUL0qCVrb20JP6GNSPaSDKnRCOcJp1V1WExXX4b"
  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/9.34.0/bundle.min.js"
  integrity="sha384-53P6MMkVn0DDaKYIzeUJsL4myy0ml1QVsErYuIdCyys2xCGn9wplX9qhVMmqnl/B"
  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-OJRRYIdKEciQ2N+yoLLhB7zw+qfYlX/3ZaNx+vlZwnyQXBdEW+3yp++Qgj30mIqt
browserprofiling.jssha384-6xMPKdSlHTD4C2VQ6WmKfcaIxXYXCte/8mWufyTPQjQnh89z5oXESnlzMrFLJY4L
browserprofiling.min.jssha384-aZndL28hPrG0H/wjKgDpCTV2XAtBzzHlswx3jgJ3Evsp/4UEyNGMcCfU3SQBJb9Y
bundle.debug.min.jssha384-3Q3EcYI6JQAb5NVsbiJS0dnKZAQeJVmv49upPsgntZmcAL5/8rzxavTNqEiIsiGN
bundle.feedback.debug.min.jssha384-38VRqNyOspYkBoj6viss/anOQX3Siyx8lvdrvXgyCl+w44KtmqQUOQ2HQMMxxxDW
bundle.feedback.jssha384-4sBF18J8Le/az90cnZRUfpMHW6GnnCn6Er1EqI2bSLkUJNGhcO3sDRe/DVDfDp3J
bundle.feedback.min.jssha384-GX1HBPlzkAbR/VXct6F86lwv9h2dLwOKdLd7NLxUQFocegP7Ovopw1L+bz0u8Zl8
bundle.jssha384-vhyWU6ytAr0llF7m2QrRng1awdwEPcqEoH4CSejqaOrQmrwiJ5mT4FzjNwMVAfUV
bundle.min.jssha384-SAsRvjfAFRX3iwi3MG6ToeZNJVpHcRXKcITfFVLQipWK3uQ8SakuVmHDoSR3YNmJ
bundle.replay.debug.min.jssha384-4VsillG+Ql+c8AxQRcFZmdd4et239u2uEuc5KGwaNGYbfc/y/H8sqvewIL/XK5vC
bundle.replay.jssha384-4C3prqOLlp+82p8vrj4savfp/ddNSklthod8b0AgLcXVHFOqWwoXMoygNRLhUHCv
bundle.replay.min.jssha384-GewYwHEsdIGFOebYg6M8hyL65Kbb1W0T39LEZDlCfnF4ESzyANF0XtmFu+Z58dVD
bundle.tracing.debug.min.jssha384-9UVZLMpOJ+sQZoqEbsRTMW+bL+RgBtmKSVLEHb4tU5lqzuiBr8YSEUlCawh4aHGY
bundle.tracing.jssha384-b9TU9FO53p36xCzrtaT7vDRjkfEDsh3Hbk8pQ34Cj/YAiLZTV/Azq1px0iZ6jkj1
bundle.tracing.min.jssha384-a/kpZPRhuQUHO/PWjukV4gVMXzT9kTRhTqz6fVjhBpWKR3zy1gEz9+UR6bTC+lHI
bundle.tracing.replay.debug.min.jssha384-Vvcm7RzlHL8R2c2jVRlBcEVhZvvnytQA/xbd6vy2cNrR+AOA05XXOhBE/VVyQA74
bundle.tracing.replay.feedback.debug.min.jssha384-+W122wghqk4T/A2tj47rHsH3ZGzAHxScwEeW9sUwRMU71rrZ+QrXSv+rlgEsbac0
bundle.tracing.replay.feedback.jssha384-5amRBmxyc82Axnq6gsy566M8wLKU02heu0KGa8HPICYg6u6UJiqlRld8wDjn+Wo4
bundle.tracing.replay.feedback.min.jssha384-aiLYyQCmpKMM1nXKyu988W3TI8M3sl+uLgnP8S6d19s9e3GyT7RC6gR3wFVOVg+b
bundle.tracing.replay.jssha384-V/i0kc1cEVJhimsOTIRVXfjDn2D7Lm64X5jmZOSw3NO70VATZGWWEEH7CPWxA/84
bundle.tracing.replay.min.jssha384-LVTg3ymc0JwPuSuQFo3gf7BkIeKONr1g2Nk7gCoct9TKhEw1w2VjIeOePnlKfuOI
captureconsole.debug.min.jssha384-Ii9aRfUjsi65Mm1vC1R6ahMHSOoSLcBllU3xBWyg746DCNiYAUWCQBo3jWgo8yCo
captureconsole.jssha384-l6kPAFiGoJvcbZoQWEaL+mFIswWcN+tz1dXj/pKvXABcxkXQqZBvcYvrr0CJTqv4
captureconsole.min.jssha384-+gmGwmyct6Qd+zQNPAem5GpSDlLcyIhrHiGKf50yxjFho/0E1zlbLGmrVb/YWtCG
contextlines.debug.min.jssha384-vdgJQI6PNaSh14R1eYu07HyshD++1Smpqzp6Aeb3EM3NbOW1qLx4aLbP2QwKpbaJ
contextlines.jssha384-74fYzjpqN+ddPinmKpFRvbub4HKp2Dhmp5kzFvXWdI7gafIkEqNA2a6OGlENO9tD
contextlines.min.jssha384-s8OLlFJBHhcIdTeS8gb27oJEqa/oOd/X9s+InLeq91BPAOdiq/k/tEY5tcZSDzl/
dedupe.debug.min.jssha384-JXc3coKUx8PtILlz8SV3lBqe8bCtGZzxtZ1Xw3jtlb6o73DsMead82rIxSyuPtgz
dedupe.jssha384-L3AWFQeN8NlfZp04e1YNVxOhzCvr1Zx77/pVHwlXyFBmj1gMgPHAgWatMyqevk4z
dedupe.min.jssha384-KltTRZeyheWhs81cZ2tLyAjQ5LhzFWzZyu6N2qVNcLl0Su6rZwiI+ripicP4YH8n
extraerrordata.debug.min.jssha384-vJdRjd2LtnsROxVeC6QAg9L4M8zbLG68YdDbpinWLsvfvWrKSA3WpTWsVdc39x0H
extraerrordata.jssha384-bQq1NrFrRogpTGXD/5Lv/R2T4wB/46FTNX2A0cVqPaKVqnIC91g3pDTwVv7UhEyP
extraerrordata.min.jssha384-pR2vJW/1bYlWUmpc4LOmgBJQqYxwJa/7R1BP+Sx0ZOqopIUh4qJ2V31s8jjC8Osu
feedback-modal.debug.min.jssha384-xXX+LjJ6BXUysWb/4eIFitzz+073oWIFvV2hJTZJRL24pUM+1TG/T5CdH/0Dx7Z9
feedback-modal.jssha384-1bQE5MbSdt/r/JWq1xv6juxUBg4mCMYut5lMd+X7Jq3HQp9od6nOIlaGuGLdSIso
feedback-modal.min.jssha384-FcyHDBAExBj2cWAxLErdLsRDaL42NcPSC/daadZS/k2cpGKxaBY8yrhXXkXbiynd
feedback-screenshot.debug.min.jssha384-NJYMeeq1K0qGOx7gFZpwyA/7RzyyzEt/jBIO77pcilbNK4+V6YIZdDwpmmK6QuAE
feedback-screenshot.jssha384-7etUmGWlxd71Dj/Akxt+G9vz3Q8lwsaQsqSITfsCP+fi3NgBK/IcjyikVzgI5qzn
feedback-screenshot.min.jssha384-aICaQ5r584I/YRbvDtrcEFdTJhFjEEYeXm60sWxb6qnnJ3V2j5p46eLesNsN/RGJ
feedback.debug.min.jssha384-YUdZHfG1vxjScCcJuPvLN5OXTlt2DISFccB/sK53Bn3eYhPDlSKcG0FsF5bzG2qo
feedback.jssha384-ev6vWYhtWkU4d1FFj2DRmUoD6xCwIF2uj/kkkfb+s/xDfCrl5joA+LbcjxSewXQ/
feedback.min.jssha384-mCuaSfFhZw6YX/rD+ZapySN7n0Y3OGdrVAzrAiksJlsJXfbTWx52Juhm5loefE/Q
graphqlclient.debug.min.jssha384-zJC+/64l5UoONWj5r3ghxSL2EfpNRmFmp0cRCQORExO2eSaR90b2FJjMxrIc8T8d
graphqlclient.jssha384-XFVhbfTMnFvUIq3hV1+Zzx66P5fBiQwSVteKF5Y2SVcua02CJP9AglIDWE81jS+x
graphqlclient.min.jssha384-ltJpMnebLhEwrmxYnukadv8LgnV2by30ufT27Al4Z9z8y9jrPc+r6xqfMW1GnVc5
httpclient.debug.min.jssha384-LKiDQ48iu5YMsLv+wLU5Equw7iOr0MrkRr7QZ9t3hcxuw7iRjtPZnNmvf7byRDPi
httpclient.jssha384-QIjUD3vVQqpDqWoZbXdHWR84oNjfcBT5K4jOXUT+A4UvHduEf6E6zsNNPLVfKAcg
httpclient.min.jssha384-KOyM35pVaVJUnw//tloW2KSgAti9z6wxHLfD4tQJWghZo2UUpaAGkU54YOXu1b60
modulemetadata.debug.min.jssha384-60qJT6cFRa+1ZFjsSHj8SLqv9FWpfBjQ+4hPunWe/EXhlKuMmz514Sdyn1ucjl+v
modulemetadata.jssha384-Lz9Z9raIpBHOlNlTd7uFtYBLA2/5GZTRDe4Po+Q0oxtB/jsQRoyBFZez4mo7LlOR
modulemetadata.min.jssha384-hpyok6muye2R3YTnB84vSMIJ7ZhKuVgErK9oqL2MbRqndIENLT7SG/RtrXho1aCF
multiplexedtransport.debug.min.jssha384-hrREqrAkS3e1mm6FXkAKYYAu4MER8oUg1Xn4/KqN9s2XBQqD0PliYJwOKpB5dBjR
multiplexedtransport.jssha384-t5577K/vpPNmsS7KMgWlzuLAylSNaiDLzJNqieZMDrB2hifUtdm6n8Ejvb3yHXTR
multiplexedtransport.min.jssha384-67tp5vgrt1vKhbQuWASyp/kiTC6JAQhcBzsndb1h9KzzGPX6HUm2DtKAcZtnz0Wm
replay-canvas.debug.min.jssha384-d5qmW3HnV0yeC2hJiXsd5OwzTblt5E5/hnuCVyodgxDdale492qGdTBRCFgC4zGv
replay-canvas.jssha384-f0NcLRDVjgJSbGHZJ3GGRzQNn0KX6Ptgzg/uJca3gMYTegd2FNK02Kt+25M+1ZeD
replay-canvas.min.jssha384-JG1RsQ1t58i5F0eCwEcDgPYwFXKDfzueuZ3dWsblr82bXw5Iv1zzr0XzrBSNgn0l
replay.debug.min.jssha384-GRLw5F6+vQFguFapZsc8UdEtc1/nlut+k4uLpuDzoc8/kETy9jLEDN/iPq55x6Oj
replay.jssha384-+nK4zSh7oEBJDv3BeDIvgdSN4mOPOD/sWBf8tV1alJcOj+r7Ngux4pnl0lj48kzW
replay.min.jssha384-vR9myP7iSZ+WP5WZX+hsYtpAPNg9pmwSvaKAUzlf1Uf3//nhrqMbYbzIZM1gLcWU
reportingobserver.debug.min.jssha384-0K5FvG9OUS6BlqOfse2f9XjNYI1kUFkpKG0dv0pnr2essrZTinIL3XixNkFznNTc
reportingobserver.jssha384-kV05KriMXYqzoetQVP9081z2NJuaduK5Wisya7KiE57wR1i0mE9rULAhX9+jipnp
reportingobserver.min.jssha384-dL7nphxtkQV7AF1ZUcmXJn2Z04yPvxkfEc2bwNJ4E7qaWkynjpDd9WZdb3whrVJ8
rewriteframes.debug.min.jssha384-MY3Vy8enQR2/lpWWISnHpGMM2IZshkmGcm9AOLD53SJLGjTwsDFVyb8+Yye5tXnY
rewriteframes.jssha384-rkecLioJJXzby0wQpBqDr5AQNVQlQzgWRrDvjkhuVJy+ilVZ2E2qq93P1DWFL69I
rewriteframes.min.jssha384-K0rROzT/9WUGrSV4HcFqcqg2qi9sE+TmsXPokMCLz1MqMGnnG3/ymlfNW8Yx9Oki
spotlight.debug.min.jssha384-KPe5qsTY8K3CjaPpKnTD6TPXUmRgJAwXVim6GHE5zvAtgD6rju98DWB4Zmyy2RHR
spotlight.jssha384-UIkE7XeSXab7TKxdYa+ubdHmXKWtOcapiVVfoQklnQQUZSDY5lrcSD0ClTouCwBQ
spotlight.min.jssha384-VOndD8C33LzsyTsIPowz303B5l+zp2X9WaIeQGCOSXuVUCQcG8lF88tDeDuYV0DO

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
Was this helpful?
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").