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.38.0/bundle.tracing.min.js"
  integrity="sha384-6PhMEukcuQlyAMp31IFn7NcWZ7aZitdKEPQlFt7ur8JEx+Qk3OSBuXNtrJsu6K5I"
  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.38.0/bundle.tracing.replay.min.js"
  integrity="sha384-FqkckVXWPqPH7BSHdce+qDNA8WW3tw2ahm4J6hx8lacpcZjAC4REnP+jKIG8UKcH"
  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.38.0/bundle.replay.min.js"
  integrity="sha384-bEOlLNYR1tmx5JA3WVDwnQ0PStEk/WTlqAd6VW1AT8X/V22b3xrfhgPvu90pLLzy"
  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.38.0/bundle.min.js"
  integrity="sha384-48iagrZwMa6wkDoJKNyCk4jgMHcOcsBK/DzZAJInl1ZhtunellJDCRNZuomfHefF"
  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-ozS052QTgd/oD/CYbwD1SftKZ1bLScKEUP9TqQsPPn+5mCYX0oqKslGYVOzo6vJO
browserprofiling.jssha384-m2fij1desoUPt7ewKLW5Q45Xdox936RRG7R9uireCPafgxJqfzNMrNHteyJ95R31
browserprofiling.min.jssha384-3UE57zzDYew1gSSRexpuB5jPTOUJC9IhjDiVj/5msUPOBwFXkf7EV03QgE6eEsAn
bundle.debug.min.jssha384-dcoij88UhWXwhbVvidSaeS1K45v+MlmItqV4wD/2MU8+B769SUimrMHsaCsdXTdl
bundle.feedback.debug.min.jssha384-Mje/wQvH3KlxuTaKyA73qFbW0KfWGYjDWXa5J58OWLY50CTBDJAS03JbztTWsp0M
bundle.feedback.jssha384-jL0+qacCQgGdP63tCnatNX6vbn8+5v3D3VXAldXqy/duM3G+o0oFzH/nQE7oMpMl
bundle.feedback.min.jssha384-RDkPIxf0HMX8xHAUFPjC7rcG1fLoyHzCyum/ZAcJzbASvZWdnDGZevvXdc5jaE4P
bundle.jssha384-gXbS7SOC3fp9MNXmA0qcxMXVGeHqdIUkkNpgLKLiQGzmnqdBM0lGco3Tnaw5Kuqd
bundle.min.jssha384-48iagrZwMa6wkDoJKNyCk4jgMHcOcsBK/DzZAJInl1ZhtunellJDCRNZuomfHefF
bundle.replay.debug.min.jssha384-CH0L6Vkpae32hMTfrS6XFg2A/cJg4p2tWp1tacgxQjX7vt3RgoHw6SvMDLN+lDnP
bundle.replay.jssha384-MUsQRESR4VkDzN/JmhcHcRa2FA+ak3B4WUbjf1JRkh+KsuNBa1kxpdPhHrty3FpZ
bundle.replay.min.jssha384-bEOlLNYR1tmx5JA3WVDwnQ0PStEk/WTlqAd6VW1AT8X/V22b3xrfhgPvu90pLLzy
bundle.tracing.debug.min.jssha384-OFnWJBZDqk1yf9k7SFpknXueVrrjP8sGpufQvzp84qe1u1yiy6mkDotSZa4Vw3Qm
bundle.tracing.jssha384-gXdVAFNMdEt+oVsStxOEOIC9iyXcaD6YQvys/eFvWdaFTxbMX5TagCQRHXDqjbM7
bundle.tracing.min.jssha384-6PhMEukcuQlyAMp31IFn7NcWZ7aZitdKEPQlFt7ur8JEx+Qk3OSBuXNtrJsu6K5I
bundle.tracing.replay.debug.min.jssha384-4eztj8ZcJr9sEupe8yUG74WqktLWaMjd7PnKFFkAXi60h418KeZhIzTVx6AOtsBc
bundle.tracing.replay.feedback.debug.min.jssha384-4gG76zpDgkmyKnByKsO2HuCLzdsHp4HnJoPfWFsjJW1/NeCajQSDKdw8J+7AOctn
bundle.tracing.replay.feedback.jssha384-FcbVQ8BcpT3M8zK8lg14GtNjco5FLsCn64/Knd8etQfgAa5t+dFAU324YNUfkKDI
bundle.tracing.replay.feedback.min.jssha384-KK2H4C/G9H6n9h8KKN0nfweS65JGeGu353mrv2iFbR06pBuY3hlYdPyuWrW+BqNl
bundle.tracing.replay.jssha384-LLdd29363eQ25MwMLW3VLMLaq68KxvsxNkStqDChb71bBIA9MByttLYnzVAo/eUU
bundle.tracing.replay.min.jssha384-FqkckVXWPqPH7BSHdce+qDNA8WW3tw2ahm4J6hx8lacpcZjAC4REnP+jKIG8UKcH
captureconsole.debug.min.jssha384-otS+Etnlo4cyEXLotgLlUL7fsJKXiPccmgTFX9RXyynXkmbPRHzsVS5Gv+3q4ZWd
captureconsole.jssha384-pT1KQ53DUXbMl1BDlRvpjOJZOBb7qSn+HdCW3FjYkUXhfJ1ragQjoDEDwmrmuCl/
captureconsole.min.jssha384-1Jmp11h4tP2T8HUJvvq+haxGsnr1zdCD7mO0V18Kpe3EgNDzTXmGyrz3In/m4GJh
contextlines.debug.min.jssha384-gwz0qC5/kJVxoNjGgx/ZjC3vto2+x3YYd2cHt4n11XvAa6sQ3YPgzkvJLiwtqtlX
contextlines.jssha384-igprfj66u23GqnWhUhFEvdMTJnMp0o9j8Znhb5cuTEPNS8bzyB7pBX/nN4fUKKk4
contextlines.min.jssha384-MUSdXlqvtSpFbWTLPKMfGesUKZTCJnedEbY2IU85VhBVuI3uYZy71N518WE98OG4
debug.debug.min.jssha384-2KCg1WfUGCNcyArVZ6rOVksS+RRGZ/ixwwr7XXsMgi54BG6VO9q9VAxkOrklhUl7
debug.jssha384-eB7ccf5V9YMkvIS0wzuixqxvBUeHbjt5KkyAT9ul5ttlOj8380et101rVcJ3Ku1M
debug.min.jssha384-XkOqe3hY7e3vkq9UPNcdOtjIhW7MUdNQYG45j+7p0rECIyHqUMDMHmsGj9EVDfzH
dedupe.debug.min.jssha384-nsnb6nFqNiAi8g+ci3DiUN+QuoMRqKP97IFB7YzhgGZOq7IN3aMtMyQR2KoUbwHk
dedupe.jssha384-lwX2fByGscWpIZL36JtQZ7uUtxnU/ZYTViOndkfxLnPJDP8gjwDXX+u/blLXH06x
dedupe.min.jssha384-eTG9l2SuU13MXYCkNck6JhxVR+47WPO5rEVegLNeGM1A9VPG7aBz+mkHGXOG89I5
extraerrordata.debug.min.jssha384-kARTd6dLLJ8D01w2Wn/vPlPokcAzzQY39HsQUpQZPVdBSL2kUw26m+dX6+qZti9X
extraerrordata.jssha384-nqKVnDJegtA3apqsvmAljd9M+Ko9sy/jQsECkuXjuF5OmFS1PyfSzcPG8KglqV18
extraerrordata.min.jssha384-yqwFSZZH/hGnzY98RqmGrcO04cqPcGbeXzYxJ2JOfbwD9o/mUfkyyLlivx7yHaps
feedback-modal.debug.min.jssha384-jevZFymS5cuOyH9nngCGfvDsr5L8PXdglBXKTYCzcw8j6gpKohtS642nwpvsFq6U
feedback-modal.jssha384-MUN6iGOoXepXlvrObuqIv9Cc3Ks/nPIr4vPueMY0osB0z1ylgfyXtUhpm2EtgqeR
feedback-modal.min.jssha384-7bUS5lpvzK12FyK+6pXlBQvKS2AbI9f3BOQfz94+oIp4HMAo4ITtIDEGs+lPrI91
feedback-screenshot.debug.min.jssha384-b3lAqlGknVCGFIscaWLMyaxToxmYKUGS+7ZUHIWrSvg/gNW/J7i4Y4HziIZ1rjrZ
feedback-screenshot.jssha384-9d2HsFbVCTDRw5zgg+h7F9JfM/JOUugRczNho9eoDP4frA8NPExx0zyWtpJh5+wP
feedback-screenshot.min.jssha384-VGpgqn6TvrjI+4BnC1rSbvz76EXBRwVhnj24V4qtpFPTAyWOzVwvEJYu0f0dYhek
feedback.debug.min.jssha384-FLLto0xwe2boKzEoLR/oLfc5bW9Zk+gqWDkqW/idgfSFfWdeZS8QKZ7R5Q4giytq
feedback.jssha384-+zHoj5klijpVUd0d6lhxXu+j2ktfkBQ1b1vpWI0OaZ1wW13JZXrVUeoFgwPvOISy
feedback.min.jssha384-dKCH7KrlygLthANdEpi9coLCGZQTzVCAV8IQLgJniox4glo7XgTPOfjiCvgKgh5K
httpclient.debug.min.jssha384-C+vY3uIGMPs7oOYnnlikfuFZCPa2KvUnADOX3OnHnEyNtCx7vA+uaStB2217+P6c
httpclient.jssha384-/ZFR3HX7B6iwBeyqoAdO/U5jr+TvttvL8qLBoh1ED6v5iI3dQM1S53K/yhArWoe8
httpclient.min.jssha384-ob+guC0IIAMm26p27CsCwMf4dr0tVwZmMwkQ5iG5BJ138hzbkz/qfnpDUsTvkIB2
modulemetadata.debug.min.jssha384-qYFZAfWpj5KlPA0Ebma8fyj6XB7/ufVzUPUBhJF6kj/KQLVOEI1jGeHj8ROpqT4g
modulemetadata.jssha384-5Y9F/JR8va9JHNbapKbPHIJDgHE0Jei7nSWjS/vNCHKGPFOET62j1jYHICBTC1gi
modulemetadata.min.jssha384-TMmTZWYPIa7PDwQqD+jYs8HKlebolJoFKZCLVaLnFQnjLUaNl7vSXY54at0F96xg
replay-canvas.debug.min.jssha384-YMe0dKHI64IRMvTrpovw0/sIK4oAKis6yQPuTE2a6D2BWvwkURPs9vJWhMW1qnx9
replay-canvas.jssha384-lzZo9ymNOBQ8j9LOolwHRUGSwh+xmQMR8r6YxJrnm85w4UoVs20BV9cfzXjyZBvq
replay-canvas.min.jssha384-6XR30bL8IjZR+CGAqvGWNkay5FGcX5TD67lqsPtMWLz/1aA5kcifIg3m2cPdIzTU
replay.debug.min.jssha384-BqbTd9dWhP0kdfIXyu3nsDIz/RF0xUN5bGrugQMXgRwPUBv0ZGmf4vyrs6zho1ED
replay.jssha384-U70lkDUqYlkQ8gaHPEYL0f64RZQPDNZIHcZWY4wC4NCLygs8uWgiCRivslTLy11B
replay.min.jssha384-dT5zEXaNB8N1Tv4ccMKZKcpdgHPiyuQBQx7csLAttVZeFL/+o0CKaI/NG41avpah
reportingobserver.debug.min.jssha384-+gUJJr+qIJHez13bCwWMcFSZwRxKOmmd+q1/ouMgvF4O717D8d4GAV2rD4UTM1ND
reportingobserver.jssha384-yQ466pHyNvDhzT79b3PbFLOWyOFwFXoe7fdlc9tBbo1+Efa1GuExlnogKlKn+AIw
reportingobserver.min.jssha384-zyqIub/qYd2tEwX/V7V0vlk5uF0HKHKzWLhBuWsea1Ps6hbdVKf1ea/cALxTIo3O
rewriteframes.debug.min.jssha384-UnFJTRPDZZ8dcP/YnvIgcotfYW3MDTcMrmKrLW0q87P/bY+i0oM8y06vgv0XYbB0
rewriteframes.jssha384-K6gGzjrxyf1h+bEQNxJSMUFRNoljaVP8R8kODPZBV1RrK66aqX465Qov1934r55u
rewriteframes.min.jssha384-qqZWfRtBsrtwFsMCi9pj6HqLuHN5loKXPezO9T5OMsYWoK8s7mcuEwFbaszFPs7N
sessiontiming.debug.min.jssha384-bGepCliJgYYeO2NEjoKPDPFYnCtOeVXBnhlhdlhumsi6pT9ju3CaH21zcjMHHEWi
sessiontiming.jssha384-vDiGRP3sasZJ3AV3bBX0p2H+TD8Cl9CKppc/IrBaYeQk43a9mtqf75/8Fj4E9Gcz
sessiontiming.min.jssha384-H5W4J0j74CDKESMFKPcvUix9h1WsbK/2YuZKux1JlODy5Wl0430YYIP9TfNYkjCV

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