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/9.11.0/bundle.tracing.min.js"
  integrity="sha384-o7pty/ha8uyh637pPoTnL6jkNb4+wsVnrIvx6sAWOlRtguguQQI39iGIGTxEtXzl"
  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.11.0/bundle.tracing.replay.min.js"
  integrity="sha384-DvT4IoA7shaGiZ1Bk9PKOvTOBAsNpcjwMI3dnU5d6R34GppDL1f+gH2JhKS9yZ84"
  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.11.0/bundle.replay.min.js"
  integrity="sha384-XINIw21QlltEpm8jh6nkrLCt+Ld7LsjofD6tRXwZP8ODUkoVFrMMXTvo5ef+sEac"
  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.11.0/bundle.min.js"
  integrity="sha384-h2yxsiLxJSmxJIbEQkilPUy73p1Q7dCdBAhMHJCklEl1nvF3+uk/znNqttbJVk+C"
  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-QE+gmCrIOSjAYknrA5triPz14CS2KQLCApHcNI3o2A/PaXg6jfjk4/HeoHRjB9Y9
browserprofiling.jssha384-joSgEwrpWKmsFcMjnFsc5UEH1fTVZresUsoFvJHuObKU7GyAOn+gmDsPP8HNbvEK
browserprofiling.min.jssha384-iLEUpg02rVbkAW3CxsBOtNBoiBQUnGQZwwh4G46P8X8CwHK+V3CCW6nJjLm/QDCd
bundle.debug.min.jssha384-ZtYUjmkzfA/MZiCv8g2nFRUYLdDA5ZhyqeRgZi1LV/zxdQV/iYw9BkMTwKQWJ7vP
bundle.feedback.debug.min.jssha384-hPFhbOwDnW3ZdSrOgAGrgwZ6dS7hZvhcwz0swy/NoGtpNZF+Iyi8jmWSkQJoBpOU
bundle.feedback.jssha384-YA3gfP+8J9nKO8I+QphATx6BDgz56ucL6s5l4b9CrXeT2+QMb+bkRaqkWD5tplsI
bundle.feedback.min.jssha384-eQ9i5YvdXwuMs+xY/vAk0IvOsLgNnxnXLqLGc5gUeBQMapgH/lOcMTWe4rLa4Hte
bundle.jssha384-LvKnwd9Cq01fnFxB7+HcWTHZVw6yFoO1l3m9yfRJDhScZYkVgvRLCMByy4jVNKW1
bundle.min.jssha384-h2yxsiLxJSmxJIbEQkilPUy73p1Q7dCdBAhMHJCklEl1nvF3+uk/znNqttbJVk+C
bundle.replay.debug.min.jssha384-T2e78153LvVtBbxxscis6q8QchsiK/xlEmVIn4Kc+WE3OPfsDeN5s0O061n8gd4H
bundle.replay.jssha384-5pZ8kfvQamf0nL+P8bEOj1c1nUIjwTbhc6NYU1b3TlqoG2Tv2vjEYmcxHmCB51jG
bundle.replay.min.jssha384-XINIw21QlltEpm8jh6nkrLCt+Ld7LsjofD6tRXwZP8ODUkoVFrMMXTvo5ef+sEac
bundle.tracing.debug.min.jssha384-UNXEC7FZovB0kCIHK/5TowZN2QGAw5uepJj9CvdxjpzJJnommoYUe1q0PXPuseMC
bundle.tracing.jssha384-jUpnqN/sKkPyuXQHUQtKVIZefkiJcnhsEInUFJj8MkAxU1Gs5B8J5RLTL+Gmo9C0
bundle.tracing.min.jssha384-o7pty/ha8uyh637pPoTnL6jkNb4+wsVnrIvx6sAWOlRtguguQQI39iGIGTxEtXzl
bundle.tracing.replay.debug.min.jssha384-u413/QyWPDvsJqiaMuWAq3uGZ95eePQ+loxqZY0tUsHDdo2oMZZqpcGx2noW7q6E
bundle.tracing.replay.feedback.debug.min.jssha384-hE+3oi9/d0PKjo5YYs2l2D6KzbPcBSANUHuL42miqdcZ2KRz6E1WFvlMakGA1FLF
bundle.tracing.replay.feedback.jssha384-kG/aZD9xzXSmMGY+T5BIbg7moBSZr4f5bZays0C68v1M4f4zuFXUi97cGjS7nhEX
bundle.tracing.replay.feedback.min.jssha384-F5Lhq8aoNO8bPkJ/hVrbINYADcbHZnirMrfnVQ2RfhtQjGNlunjeG+qdg3bOjRdj
bundle.tracing.replay.jssha384-GHghiC8R7XGg70pVBjMd4elHYh1Qp+W9DnnChP/v34xTum5SgHZr9ArPny6Me9co
bundle.tracing.replay.min.jssha384-DvT4IoA7shaGiZ1Bk9PKOvTOBAsNpcjwMI3dnU5d6R34GppDL1f+gH2JhKS9yZ84
captureconsole.debug.min.jssha384-4HRfkNq77udBQ+owh+Iy41Lb8Z1T8USrl7H+SZzFhMPPz7vyPdD7SdK61LhL2TlH
captureconsole.jssha384-MuPXe9qMWFagp8jkjT5hSRLhbnxBCNqfj+oPCINIVzPH4BT6a1f/S6iB3J5L+gRz
captureconsole.min.jssha384-GDA1mcY/Ovb50SPxH85cfSewXzAKkfHIzm/0U7itTSP39qLoBwTsIWx28rqw/ga7
contextlines.debug.min.jssha384-M+367OSehlj93fXLJgTCZD6C2jYWeMiSJUY2vAPHup4cKlHnaY0aPY4Z0SmAyxEt
contextlines.jssha384-bufsqWRrkKHYFCIwbdYMFIsIPw9V+/vN5HqfGSasdjsbRLUbLb5eIdQkK1iz0G5r
contextlines.min.jssha384-R9Fsqh/DknQzE6cy+A+8xE6BKposeb3t2R4Kbt1/DiIAeGCAveMxIYtLGt8K7Y/o
dedupe.debug.min.jssha384-HRqxZ9Y5ePGN0Lt01E6EBVlpbT+qf/JDGUxMYX6rfOm0wfZTCRQr7MKddnlV9YiE
dedupe.jssha384-EErTeDwO5j2quz8LL8pGVnBZ4oJm2+eGkkpUH/w7fOWiqJYd5mx9CNuYvKB0/LUE
dedupe.min.jssha384-lMAyCXjhCEX2QofnjM/kudN78QieEsVWvKBKEjXA6u8iHyjrjEEz1I93/W6im1R2
extraerrordata.debug.min.jssha384-AN5m5kExnEK5FN6fPtAZ3ISHcavPQ5V658R3cdCA7tewH05vP/U8WUkCc3uuoTpm
extraerrordata.jssha384-xltja/2aSk4qfHuOXmwR/2HJGMhKTsWpvWtIF3Tc0i9GHC7M2Okr5xy78YeXtt3h
extraerrordata.min.jssha384-tNaFwKWexRfn/BM04YNRX2WU26zET58gjQqGefJXsoyr/KQarCwernQj+vq/W9OI
feedback-modal.debug.min.jssha384-CpQ+ywD2G9F1vDsqPYHYgsUQ7f0DVe2gRRTzCMtg4HV7jjOZ3YEraWf85wkbHBca
feedback-modal.jssha384-WBgAyHFT7bSNNPcQyhg/2ueFXUALk5fe+/Od0RyXax9+wtf+K6zmyMrEN2WHnKDm
feedback-modal.min.jssha384-FNL8LmE204901H20sK/K0fiUfjpW4G4M9lWHTt8bYQ4LFoYfoJGxAVkkC4cP78HQ
feedback-screenshot.debug.min.jssha384-5cLbYwJFsDNqGg/QfjSMVpoj2Njibc7jTJ3pkNTyzRMcAdGqYCW7O1rENDAJ/o5f
feedback-screenshot.jssha384-qmPg34r9aIkwrFmX2q5QUCUWzwAZFr+RVspLI2Qq160jdPJAyLwS693Zc6vj5PIh
feedback-screenshot.min.jssha384-jS2NfLUc+39s4vYO3p1uqviCL5/yRGwZl5O14fD/JpGaHj0D4EZPsYg8JVa5AmqV
feedback.debug.min.jssha384-65r0w70d8Cxrdl3Ep8PN1BkklFEjmehYhEarBLEaUVwodEipKZBS3299OAEpkFsI
feedback.jssha384-ekXWV0YaOEVSD16SV+VyjqXybLvwfO2B7Ba5/XECtgxZDLvwfAneEAvxhd0zKepT
feedback.min.jssha384-hG1isHmikDO85M6VyM6Azj7yJmgM2kCu7OsNuDWeH7T91rtYVUOkPemv46ga4/6K
graphqlclient.debug.min.jssha384-lAR4AXNSbO/otYc6DFPwtxiu7nyb8Z7BDQw9PqpScA6LzFFE4RSJ2amVb2bpty/d
graphqlclient.jssha384-av9Mpn0mNmgeeJ25Vbj8kUaIfYz+8546kR9fzj9kiZnoO0Dfrwp9OgMix2126t6B
graphqlclient.min.jssha384-P+eJvi3vh+c7mwf/IFOs2dImyWxATgSqqMfBPKcRu+5K8+q8d4UJJIO/jtzKo6Hd
httpclient.debug.min.jssha384-gEsHN3+TbARxIvFejDISeJ/whXzwwDi8wM1F7PhBykZqUPEIdkn5oyzbe31uQdbH
httpclient.jssha384-pgRJV8yE4j/NMYyxZogrwYQzJqST0rfkRt+NTCtuqhWhN2V2aOlGG1/I5xaNunyb
httpclient.min.jssha384-hM+lqm8JBSeeZdxxyIipUMWJNrzzIkiCbpwoD+OnvSG7vbi9WyK66mvG0MEv1545
modulemetadata.debug.min.jssha384-y8SfYfksa69MWdVEHoT4mgRvVi5wfRAuvKGzWNuZ+RBSRuu+gTtcms2lvMXiBEBo
modulemetadata.jssha384-LEJsM7dCMnlQ9+OvHIVvIjch5Qn+Xlaqo+Tn6usteY3zRcYzeee85e7FdNbQmJTv
modulemetadata.min.jssha384-eNkta/90uGmf0x2aYJCMSFgwCqjZzB65smxqEdGmnS2IZUko4VutnfmNG9m75+Km
multiplexedtransport.debug.min.jssha384-1eevHSK+9Hivrsl3s/k7+uN1v7VGPJgZhsHolzetwXSRpiUNy1CXP4Q6y6RlPUIZ
multiplexedtransport.jssha384-fmV12buRF5pb+0uM9oXtU+hwPfwy+9ORpNt2MjMN/Mo03uHl+z4SH7zyFx7ZOOjZ
multiplexedtransport.min.jssha384-5gHoE8S5rui945U+PL/KsdfNYXQQQTaLpnVmbicNO7V/cEfOjjE8lyUiZAv/eYkD
replay-canvas.debug.min.jssha384-1BwWHYZzWMjbS1sPrqI0I0j2cQcV16eX5MHF+ZHFqk7xHBDwlxA0PNK/WkL4Agq+
replay-canvas.jssha384-uTA9/hOjU3eE82iX4/mOwpU6Ulu6qNf0l9O+SzN951qW//gGD4sETHjFcplUrmDl
replay-canvas.min.jssha384-QwCCHm2OgPS1C+xblJDrqMpBsJqe3S9k25o/nAzjWfdupXKFSXLjfrZ21kk3Mr2y
replay.debug.min.jssha384-gCbrqnxd6KXsGq3QFtCN2X6bl9hSgjyTrVAu4MvM40Z7kgRAGK+BhlilkCW0F7Y4
replay.jssha384-bYP4whlLtspf/iqhXxbzcg1RVcxgKOXkbeWUpwsdLOAf9LBlkIh+0xKGe2wdG37J
replay.min.jssha384-p6SDcjy501vkczUHlmLl1sa7etbk+8N/CiasL/H50fwymyJ/3E7iF/iu970xbiqy
reportingobserver.debug.min.jssha384-Gi+q+RlKk5X7Jphg2bvxAnkaOj7dNa/hbMY6Kin3yL/cSveESCnK+ZacJT5QKyYL
reportingobserver.jssha384-EUGJJYMy7aLTGSlaUiSt93TguleFrq/VUIaym8ybcBCR5jbJzuH36Dm+3Fj1tpqH
reportingobserver.min.jssha384-/Cgx8ZdBrtc4iBduns08vRj8l4sjYUcpV/8cOoHQuya/RsTBtJEHjyoipCw4RtjE
rewriteframes.debug.min.jssha384-KkjKzWZbNoVqcJB+PQA8J9Qr5SnIlI5a1v5e3wJ3aBqEu0Jy6oIomDf/xPJcitY3
rewriteframes.jssha384-4klo9C+us4o7U4pPphFdDtXezASLqOfQpB2K3EVkvVPTUzHnS6+Y3Xh3VZyr/hwU
rewriteframes.min.jssha384-Ne8R0uWI33Xo0+ds6G/pvE9rl6CRA/3lVPckAnecH/dTcvnhkUDsn+6IUvu4pdXS
spotlight.debug.min.jssha384-HQRF7+n54fkGPkbFv+BQ5hNFemTiGqMZzmje6lC5ZH8kBF8J0C45hnI/pB3QHRnh
spotlight.jssha384-wmBXuH3h7N9yGGL6mpWFXGHQTpG+o3fFK9e5uiL+JqOP9SF2po/pnZaRP9hFAK+U
spotlight.min.jssha384-qb/JFe9m2F/QazFtdSV9vuU7jPqOzoIM7l2M1eRkYdIMnoevCcJBUR20ve4+VZwV

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