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.46.0/bundle.tracing.min.js"
  integrity="sha384-EW6J0RR/4YFJOWX5jmk+Ksedp3QpHS0L5cMN9GwHfALVgfQkhrMcwU98dFMMaXwe"
  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.46.0/bundle.tracing.replay.min.js"
  integrity="sha384-A+ETDlSteDWBtWvPpQW9rPsFpp/4mZeNGugoeQTUiHQg4JXW/3Qyb5jGIm0Qvou0"
  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.46.0/bundle.replay.min.js"
  integrity="sha384-0hNz27i4sInbTfS1VYhOLrSyaagh5MZaIKGvMBQwaDnNuoAfDNNdz18/GUKuh+1s"
  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.46.0/bundle.min.js"
  integrity="sha384-ATs+SCHfKnVEJJ9xccm6zJxu2NFtLPHlV18I0VGp4n1v2juGgVI85roo9COyZAAR"
  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-MXDfTWV5y9/IIMvYJGvPaF/h+DDt8UfZ30J6SEJ5uRAVfZ1sYDHGYTqJciFz9X3e
browserprofiling.jssha384-Uabe0Fb+uTVllk8Xtot+KGlFmGcaf88hA4Ko+h42Rrd43zjLqY8bgVnhaNT0nSdu
browserprofiling.min.jssha384-XM+kyTzLCVHw4rsKsqEsjzyGCw2sy0GcmJJ2N1Ivf7Mkf/o1tO9K7YYl+TxAyFDf
bundle.debug.min.jssha384-ErvJ3ZIrKlXeFBbwIo73mIFhjN8uV1MGfwrOdMWPb9FVloRn25Yr9qorL2xh2if6
bundle.feedback.debug.min.jssha384-9iq1TLnKuwR3f3x08YNiY7L3dL9IPsXc/484HHvyCEZ/Y5Q5cz6NvelXqT/t+7xI
bundle.feedback.jssha384-RU54aCsNKDNBVcBer+beR4FdGIexdFXdnrhg2g7YMyB4ApFnrXiCCYLR3tp90eUl
bundle.feedback.min.jssha384-V7IFhGArdYlTFf2pzOxPcE+d/EjG/PtwoTqMs7Se5ctQuTDfNh0DP7De/rPB9ysA
bundle.jssha384-SDBYAYBhJTRPcyD+k3t+9OfDhoKFUpHTLDCnTcrOKynfw5AC+Q7OAWEn+Cg1divA
bundle.min.jssha384-ATs+SCHfKnVEJJ9xccm6zJxu2NFtLPHlV18I0VGp4n1v2juGgVI85roo9COyZAAR
bundle.replay.debug.min.jssha384-Po79WSVyyg26biBwsMXxMUCXlPtjoGSLv3ZrWdClp1WqtDHCCc9Q1kBEa0wFLlTi
bundle.replay.jssha384-IA7/edGndriGCFkdBNqA/pPHQhJQxGjOm8ACpz6CXN/uIfRYkbPzKjkYTi7j4yzL
bundle.replay.min.jssha384-0hNz27i4sInbTfS1VYhOLrSyaagh5MZaIKGvMBQwaDnNuoAfDNNdz18/GUKuh+1s
bundle.tracing.debug.min.jssha384-Mbp/54SIb8GJEYgOxypzr4XYaEfXMt/kkhODlNAZUNk2NvBSjEjZ+VEeDTqz3DJT
bundle.tracing.jssha384-JBE9hbQ9iPJluC15D1Xntv8lMNVJ3hl4zpcScLXlmiOgip7bQfobQrTKLP0knsni
bundle.tracing.min.jssha384-EW6J0RR/4YFJOWX5jmk+Ksedp3QpHS0L5cMN9GwHfALVgfQkhrMcwU98dFMMaXwe
bundle.tracing.replay.debug.min.jssha384-27qeB9FT90rgYRHBY0+OR1cimjklHQJPBIfacxFlIsSv8bg6HuvhJ+k1lW2pTmON
bundle.tracing.replay.feedback.debug.min.jssha384-FWGnaqEdQMgpsYLwvoqaofWIqx/2YgkblWVcp3YmHnFz1NBtCmbPnIIL2R2Qje6y
bundle.tracing.replay.feedback.jssha384-JupNma9ifeYusnD2C4T7q7jmfpuIYOBEk1Cp7VZyZmxEx3Xu2tobm5ZO3Y0zI7FM
bundle.tracing.replay.feedback.min.jssha384-l2QGKRLy9K7ay2Tdo5gaCnL6UERljOafUhmXeGHeqk+OrHW0uoYRfj27pI7NZ/Ih
bundle.tracing.replay.jssha384-wnn9wfnxPZgOq+abLBdmGV4a6xTVs4u6eYL9BiTSU6Pg7ZUi6cHIzYkYh+3qC1ue
bundle.tracing.replay.min.jssha384-A+ETDlSteDWBtWvPpQW9rPsFpp/4mZeNGugoeQTUiHQg4JXW/3Qyb5jGIm0Qvou0
captureconsole.debug.min.jssha384-U8I+DF1zb28FVH0E6yStAqwJVe7jupVhq1HqWjn8DkjiqsFgCp78gJRZshQHWJvE
captureconsole.jssha384-h8wEY0qQB7kGGkdBz1dgZB2vhs3jKhmfP9OLegIas10+vrE1lxOd+sB2H8R9zBeM
captureconsole.min.jssha384-Qid1+9l3dFX+UWfQIMFzXXF6Sxeu5LfLvagCTGH0meZ9ysQpN1jlQ4GfFB4JvkQY
contextlines.debug.min.jssha384-iutZe022w4gRh0NlVN+0usciD7EKrk0euo9wvr43Qxi2XuBk+G2qzmilziwUbxhg
contextlines.jssha384-aXbYV0wshlG3ifQk2Pb0iSPU8diS+1vurACaRjCDz999x3jPk2S2Ev4bVTKHiQYW
contextlines.min.jssha384-0OAbz9qPwzG6OeWPEcJC1bVAcntVtxtcnGt7idI3CfXs2MvwKRjjxSnw9RtWs8Sy
debug.debug.min.jssha384-PgS81a18VuCfpeQiTHZlhULW0ri+qc9NetdkurIJAuI/u+Epv0Ye77eJ1XvMamBb
debug.jssha384-UDnrK5GogGXrsqjOXv8szwZ7f+t1VQzcUSqkQhZqTCRpkn0inewZGJ/01InlTd68
debug.min.jssha384-WBiOVe2CFEZCNSEPScZqR/y0iaUMMb5lX/9AuskcojV+dSdMk3d14NRREvRuofrR
dedupe.debug.min.jssha384-yJ7t2nSt8v0xiGLQUoOsYquY8sqze1lg1AO/BrfK4nt/1zz9FGA/TlJgZoz6Gp4f
dedupe.jssha384-Ba/E2WFEC6VRywnceWf9Z6wswDKt847iJjwPjes1RL0EbPHLQlhdVHAA5pRtcaNm
dedupe.min.jssha384-v1E3P81OwHVIvQkso5Y2XF4kgQVmKGhAYVYf4nC+7oqjLqfROcm7Ox+96CL6vra2
extraerrordata.debug.min.jssha384-Cz91DJYunupvn5z9RfMim9+EKlmqCgsthPAhuweYii1WDqoFpMiJOh/mlc1vg7Md
extraerrordata.jssha384-qqjPs2qR+R1sGPThsW8mkqgMj6lz+9IFPD90KKGr/WVQErwOlS/3CXnGilAdeurT
extraerrordata.min.jssha384-MzOjf6VvM3n+5uFlY4fHwy74dk3UjQqG2cSvZo39myX4cg5yYnrDVXvf4axxl1V9
feedback-modal.debug.min.jssha384-PtaiG63xm93to7RFav6i+T52s/YQdq6RsXUPbDIRY6M9472clZzT+P5oKjVGOg37
feedback-modal.jssha384-gID4NeGj1Y2oE8vWqrJJPOybi7Y1Y8OBlksHilIx8fBz+YAeK9oeLJXtHopdwSvm
feedback-modal.min.jssha384-mb2GDAEWM6Y+YBXvuBZBDVgDRd4rfRAUT7gF/iMFeWbUVwHHPGoh9rRy7OWw4hOX
feedback-screenshot.debug.min.jssha384-hP/90FPNFE/NWARXQK2ktbzqvkwIH0asPJg/nYbwVuYiFddj/OFR96JvcI+F6bU9
feedback-screenshot.jssha384-EdOf1LHVcjz+OMMX32NMGz721n5V6KBmy/XhUEkXhBkEmRzYAWQjSYkFH7XOaee1
feedback-screenshot.min.jssha384-VrjL/20jHySR4V9ByU8EQDYSMRgV1li90vtfdC2h12fBMzBMdYtIOPsoRLaS2Dgt
feedback.debug.min.jssha384-ZJkI4JuyDO+YMRgLmqy3FnkECqSG4l0Nk7s4VqQEJDD4eGAgR87MqrBHOhI7Fxib
feedback.jssha384-6z6Rck+a9J6yjbxo1tPRoZx0tU3km01CPBBys+znzG7dHde7c+RAFpaDLUBTxSLo
feedback.min.jssha384-iZXm9j6UJrDhPHOw1hgOC3noAcgDdXy2wen8nXf4ZvbbPS6jbEeYjhl4QQyrAUEL
httpclient.debug.min.jssha384-piIgAFEOpWeKi/VTzXyDYhZL+RKuyA3iKVKhbHbYDQaX2gvcRbc9pQkPc+b17Ydz
httpclient.jssha384-iulN2NCJpNY6oT3rkFgv61C5rI4kb6doOzSzJNfOfEa2m12HXTkyOZy8x4WKzcBa
httpclient.min.jssha384-BRdwy7C8wWHtw+XSll2sKeG0IQua13FaTPTcSjy5rTWS+Kafi073ABdBuD/N7c9a
modulemetadata.debug.min.jssha384-JLpwifvsq3wcAS96f3+a6v1HLglI8xEM79lfEcHUkXWddCJwpGE/YZPRUqu98Yg3
modulemetadata.jssha384-T2UDPb/RtzJWvBX7A5zWbzEoTcRtIZI6uCAfGgqHV2iMbvf/1p0ZcvzSZTDNPnRT
modulemetadata.min.jssha384-j1oQbGyRIaJybEgqQkVtcBreQF2j/4DHImojESir43zu1NLnUPOQbCeJrGlCZJQo
replay-canvas.debug.min.jssha384-2U4+2me5NvDVp4vF2oaZC0nvZcreSPYJAvobKqHG+bURtdNXe34IBRrvdGafLo/r
replay-canvas.jssha384-5qYEpJrJQX5/BY4aFIeOrMFiFwPJNv1naNq7eescKwUGr3DRivDyGBWzT4vj43Xl
replay-canvas.min.jssha384-mFu22Lgq9IhY/upItiwrjDYYEcfJVTXC1yOoY24WK7w1czG0EQvy/lyKpwQFp4sl
replay.debug.min.jssha384-V82hi25o+jv4m2EKa0e+XMtSTn88PIIUgyv3iggkH15PeYWWTY9+OEgRkj2x4lH0
replay.jssha384-TKqXdFqhFVPY0U/qI18epPBJquFjOnokZ7C2MjLK/yEsRLS0Tuu8KR9YbeEkiDo+
replay.min.jssha384-m7tT8i5wBZWSKnObfofyqTpRe7256D4FKnet07v8tUVLuyfRe0B35dSKLAJAbQzo
reportingobserver.debug.min.jssha384-sb8MuaLF7tsF+kABi1VThJ0is7Odotyo/btCpxaeOSdJjNNTzT/C/9Dr6T3UQPVu
reportingobserver.jssha384-SjW00IqEYx2hrrdIxXFCqFRfH8O4f3fnGUtOOQsBVwuzV/4X3vlxW7xNW7iJ9HpT
reportingobserver.min.jssha384-INlSGeKhvJfTbjKPC09H3COnGeyFeZPfcDwS41Zvb/wo9S+09IjZk7GuvmQN+ywM
rewriteframes.debug.min.jssha384-Uo5E7qbXA/2HAKcvgf25JoSdLIR8qyLbssU5SO66pBM+Qttnr3pn7OLFLQCC2gdS
rewriteframes.jssha384-KH+ShRsDBK8uQPQ9dSFB0QFKRFQNISPUJAeXkI6XwxibayUI7SBEYN1SsmDkrUNs
rewriteframes.min.jssha384-J44Bo4I5y3TMW9fQ3LFTyaz/l4xJIjoI99kFwV1udcrvmywt1T+U3C5sSRVeBoEy
sessiontiming.debug.min.jssha384-vLI/LdTu/7zNI2739I5AzbgJ3XH8j1evIcDz31Qyd1wate5kYDhQr9BOK58XQuQK
sessiontiming.jssha384-0OPuliZzZzBS4iuH6h6RA/sJ9AY+ZSve8146d8CJxv55LbdyT7fBMXKHBixE343p
sessiontiming.min.jssha384-GfCJHpdBCSnqGiRAY2vLoQ3OC8l6OV6Yfw9cOySoZFFqjrtxH9sIF4UKrZu0QGtz

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