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.36.0/bundle.tracing.min.js"
  integrity="sha384-3/cu8HGbkASBUsBPgwiLcBXNyLQFt2CybAzaAjwBD3WqPRkIfA+L+MxV5CaxrDhz"
  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.36.0/bundle.tracing.replay.min.js"
  integrity="sha384-dC1oFsBpF9tv2GtUIt3z2a/0AOzGCySWo6HfnEficfM1gI4vxtNKdZTn4aDMFioe"
  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.36.0/bundle.replay.min.js"
  integrity="sha384-X/WVZsb1tzrANipEFHmccUWr3B9L3U1SJMc0sGADDThvxI/gvNMbfgnQvij6HT4A"
  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.36.0/bundle.min.js"
  integrity="sha384-X4J2NTMQ0P1k5Sx2AUB7hbEFY3TRX0u+WsPCQlggKlzAuWVqsT+gVNkiBzhkoouq"
  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-o1THY2uDctakNxhji+1GWABljmxJTrUH6KkFHerFdZnCquSnnddYW6rsq+KhhLog
browserprofiling.jssha384-HAqMC6jFeK65PxskMgl8IQnXZDTEXEb5XWJJCpcoSqPWSB2mpPPYsBnDe8T+ONhX
browserprofiling.min.jssha384-/iBrbGlgk2/QuHaNDzITDWuY8HOnpTDPCaLCydNZ1vK+CRczK4yxrqyGuYiHsCMr
bundle.debug.min.jssha384-T1zHzESk142m1dzIeRN9TWJgS//3hb5mIsYw010rudyfABg9QsspaZCZDA/dB06d
bundle.feedback.debug.min.jssha384-4DJ4S8GrJklheaAmiyJaxnuHq13Sxe8iPOGtjOto1XcEqixwyiNAXE6GIFS5MqJc
bundle.feedback.jssha384-Kn0VAh465vYOE2AJLRIgJIqI0ri+l/ZlxjADuFlSGZwckwHZouWGR8h0dxJmdjal
bundle.feedback.min.jssha384-rH6eSZpMpe1w8D+F3l4VREPK7vekZaK+l6Izp1/u2sKCuzi0XMKMevArCY4M9ZYV
bundle.jssha384-Bup62sPsaWzyAnFBgfNqb0ltF5Ojq9pJKVJZq1sSulvTnZNKIR03e7y5GCp2XIOW
bundle.min.jssha384-X4J2NTMQ0P1k5Sx2AUB7hbEFY3TRX0u+WsPCQlggKlzAuWVqsT+gVNkiBzhkoouq
bundle.replay.debug.min.jssha384-iEFmkxJOhmscrl5TUFU1B4qNAKzdj0VHj2V5DNcg5Qw43JQaE+JC+t9CA0jrCvrT
bundle.replay.jssha384-Y+0ZWXtoOeuovCkUlMFWb4psVeWx+OgBikwK5MaeVrqMRrHAa9xN8jJt4vA6NmD2
bundle.replay.min.jssha384-X/WVZsb1tzrANipEFHmccUWr3B9L3U1SJMc0sGADDThvxI/gvNMbfgnQvij6HT4A
bundle.tracing.debug.min.jssha384-jpQlwNZQ985ULhy7wD5+jplXjlQUTf4sb6VXmGj+aRuvRSAZFB1+/UI4MrwOM3uN
bundle.tracing.jssha384-aRj4dTHPUQ3KWsOTmSIKGhfI6gWdq6GyQohsGXnG3G7mIBXbLxIdRPAChmTcEp5n
bundle.tracing.min.jssha384-3/cu8HGbkASBUsBPgwiLcBXNyLQFt2CybAzaAjwBD3WqPRkIfA+L+MxV5CaxrDhz
bundle.tracing.replay.debug.min.jssha384-9pFcWVqsrHQZIxRLLuyhllzkZ1J4smCiAqkMArSz1LgJxNkGixTcQdYRYPumke93
bundle.tracing.replay.feedback.debug.min.jssha384-4xXyk4FOtdnX2iiULyW6C3cBcOf55vJnXRiSBgPBGt3pPYZwplH9pn+8fyTXMxIX
bundle.tracing.replay.feedback.jssha384-KAzQbA7m2fDZt3Uht/Ne4AbRj4SImTTZxoZWstmJ3MIX5g+gtMrDIMl4hlRJEDPt
bundle.tracing.replay.feedback.min.jssha384-6Rb/UL4P4uS+n29kd5KZMfBlYB/nUVbQQODD9Xlt/4yYlpX4ohHzp6n8m2FDq+fJ
bundle.tracing.replay.jssha384-9iEHVjOEXqxu/Qaaz7ic+KyfL34L4G8jvPe71cZop4z2ox3cTe/tImcz/9bL9VdL
bundle.tracing.replay.min.jssha384-dC1oFsBpF9tv2GtUIt3z2a/0AOzGCySWo6HfnEficfM1gI4vxtNKdZTn4aDMFioe
captureconsole.debug.min.jssha384-dC5Q5dVaNRtax/pYnxRslTuEB7iOze5jceCFqvLIFUBhRGmOHtKyUumz5jbTFG2u
captureconsole.jssha384-Z636hI/wRJuFhlPXeYYtZG7qrbo87r0GhLOx/IKW87IPh3PHVfx+eq3+1lX+qHl+
captureconsole.min.jssha384-Iwuvtkk9Tgc+3Af3UuVQqD8F1XgTVDSysh2N/hfT+n4UzuST/i86Xyo5w7wPMrOj
contextlines.debug.min.jssha384-GTMs1OTy3NuQl5f6xDZCXfPCKurAtK0LnBhOCGm+nK77t3asH4p//p6SeY8a5IYA
contextlines.jssha384-/iAGqlfV/QVMv/QCW/vzhLX0uG3C2VX5IpFAQz2s384gxwj9w8n6yAkhWLK/JAh8
contextlines.min.jssha384-7jNgCXxta7XB0pzM2YmOaAUd4poLn/Ph0HY4Q9MzTFY7co0G2D3bwIsrnlbvzj/+
debug.debug.min.jssha384-v5p6pHzhGy+sADvn3w4orrsPz1CX+CyTDCaNrFesAWt5BxPel4CZaHbAoaB1n72R
debug.jssha384-4hu+Ml32r58IvG/z92nHaSQUFkwFNcP7sI+7V2nJSQr/FLUYxtIzHdmgc+8h9C/0
debug.min.jssha384-v5626Zpq0T1ltPuHyNfGmXYtp4kGUpyw+1Dy9NY4cga6Msm7zxVrkNVFB2SiWIrC
dedupe.debug.min.jssha384-yjbNeYi7JrIzH3IMIn5hSfhtcuxXeVZUBYcD2V6KBRuUOaoYf5sbx5942KIbyHOv
dedupe.jssha384-A0xfQ0nRg5TgP2p9YyJ2KX3FP8QhooImocj0ggLokj6vHVywW7dZdBGGb7qDadrm
dedupe.min.jssha384-Evttdqjc8r8nW5Fj7Ry2+iFnkrc5OVR54GqkWjTgDw11y7wd1r55tvSkgbpYxKJo
extraerrordata.debug.min.jssha384-amqzxXB9gitB+BMRnriqmJX8GnX4PAZ8vJSG2Kv4uELJ0EjMBY5nuwFmjLOB4uDl
extraerrordata.jssha384-I4z6Ih4NjkTwpvg5SdhIyTH5NnEl0lePVKYePXPpn9W5OPS5ER0fsLEsvm6eGRhv
extraerrordata.min.jssha384-gAm+fEa05nUctQcIBVPsFBt9QazmgCrfBLrDtbbzgJd44zeodN7aTGhf75TVEUxe
feedback-modal.debug.min.jssha384-+0BvbH0vcWoLA1LGuCFhsJz92AUjjgYxUod2mhpIgSlc5ZsvsBCd/Xt9Y+cKOCUX
feedback-modal.jssha384-Zk4zQklmhb2+xTY9/Hth0kv45QzFUBebyw0ewcBinyNvFZxx40lWLwjNIWeHOQ3y
feedback-modal.min.jssha384-NvNHnBSPRHjqAEuQgitm/AGKVjSx482K5QGgVYDGaW+Luhz0y5HlqyyHCnr3YW5c
feedback-screenshot.debug.min.jssha384-ahpuQJ2jj23BUgmvSvgSOOtv38AOe9yT8fo3mRjTLPWhgVnHbEkN8pwqLOtP3IOA
feedback-screenshot.jssha384-Q3TflMY0fLgAP2GWLXROOX1suqs/wZTKe7m5o9I5DMIjSiTZX4jG4+4fhlHJj4KL
feedback-screenshot.min.jssha384-++zGOsnV/n+RyRURzkN07O6ujhifADtP/jcP2PUL0hgobI/xJhitRFYtwpXHsdNa
feedback.debug.min.jssha384-blKwjXaKpUGwGLEIuCSNs7tfTzbXYhA5FmL7+mW8k8EEiSK0IsLf9MUNtiDGfc8q
feedback.jssha384-3dQrySMd/YeUN2WdAj6f1up6HFZF51pi3XFx935m9MyMaqo7kS88ac2wSGuhwTy7
feedback.min.jssha384-xknJs1XyJGNuz/mR281osorU1OpLB0qUZz7Jaes0XD6IdujPP4ijYJ0mDq/LbsFE
httpclient.debug.min.jssha384-8mP2u5Ai3H+gEF8AxjihE6ar8x4BzfG8oyM6gVfacjOnsCtUu0PHu19xcLXsPj2Y
httpclient.jssha384-1sPm8CBuKLwQwfzPwtK3ZTeSLYGUKELoGgNqf/toAWMkC4yPYTXjSf+xcQ8jZ7VW
httpclient.min.jssha384-pTm9evS7+1lVi+EkA8PnT4ggJlbCuzMX/geqfUDzOuv9dtuMUiDGM+Phvk2wcfWE
replay-canvas.debug.min.jssha384-FsoZ921ntu86V/w56HilFW3wKdQ5oMTQMgTcFgcF1dfVk8dJhr6kCNShP6fE9TIf
replay-canvas.jssha384-61XYUSSAZrSllZHF1A/XT+eF0Bdpx8eIfV7fUEMfcMugVVenFqhglhlYuz0/1zfZ
replay-canvas.min.jssha384-xxjsiHIze08zu9P+dRZ5cVnBzyExxZjJI2peXXk/ojdtZ9ebmPFrLxW5ZdVAI+c1
replay.debug.min.jssha384-I7KC/f0TTj6k448A6wSPuk0WYNDFxmh7aIktha6zDr5qj7jjKtRFDzFzqIu7WYta
replay.jssha384-52UNlllK7DzLL9G6soB67TkJPb0pR2BDRk8VC262d5E9fXgI1rcXSmDyj7PxcxlE
replay.min.jssha384-q9+BP8igQhqSO5s1Rh2VepQ1xjBxeXiADhA6Xa6pa991de1Ulrj7EgcEaB5CyQ4h
reportingobserver.debug.min.jssha384-tMSgbFM1xrBDTorD+x7FWKFzk/R+aGBzI9lMJ5SWvD7c1uOgdq3erCjT6eL1RvfJ
reportingobserver.jssha384-uK0ZJyBdA4Swk3EMGUY8ujJk+rvviTT234Xs6ACRhxfI1A5Cb4XEFdX9dxjAZ6VP
reportingobserver.min.jssha384-s5P7hs/y/T/OL6GgiP3IW457XooiYX+4hcMB7T+eIZ8/l2bnAC+NyJ6OBVsIdJHK
rewriteframes.debug.min.jssha384-W3UFqugQYMTZ6OLb5YvgmN45W2mDgPsF8rtbwQN1+/NAHYfjSKeKwF5frHvyMOew
rewriteframes.jssha384-H5lRoUd4CJ1o2kQIbkTBVHVaVvCDHLZknr6x0JnfkrjzE1Pbz8gsYP2AWN53Zfoe
rewriteframes.min.jssha384-i8k9SnG7UdBTV1N62R8inwpkCt18y/8VT8q038DeTFY6lA3OkL5LnHJ0DmzE3TFI
sessiontiming.debug.min.jssha384-PvS6vZxbHzAZsh00izIop+3gCc53DGDVmcHn2DW6mklE5Cvmlt3e5LTBs85qoRWv
sessiontiming.jssha384-56a1P/YUx9T4NaiEpPqFa+EPYJzT6e+4IO4KAjfdCu41kXpuC6bwsAw0K1JHNRjT
sessiontiming.min.jssha384-k/l23/dpDhJYAWXpd3FTFl3AaNrqiS3NgQeLskxX9AEvqrRNAO+qid67UhBXe2qy

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