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.3.0/bundle.tracing.min.js"
  integrity="sha384-uEzHdd6GNvCirbunTypncyLJnL8hYrJKhGAaEFDfeyIe/pZeRcf1mz+TeZXZrhN7"
  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.3.0/bundle.tracing.replay.min.js"
  integrity="sha384-XyeeYk6l9Np3KssJ4fjobSrC0rzyLAbi6O9gCWDJ/b714VBeLlYa2ti6/C9EJNDb"
  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.3.0/bundle.replay.min.js"
  integrity="sha384-F64Dsm2EQJZa0EYLg1LW08vsumgyzkLQTlFb0HB2HyGzY/EWeiaDiewbkC6KDltk"
  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.3.0/bundle.min.js"
  integrity="sha384-ysnj6BzrAn5LfJF4qF/un+nLKXG9Ks7yHW45wD+Lpxdxq71jsoc2brJCIYdCqauM"
  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-s5hDbtW3YL9ewoKHGPx5qhm5smspLGWWKqOFzDQyn+qU4+o50MvcfCj2iDaon/bb
browserprofiling.jssha384-NqcJCt46LaIuDaxZ677VyPT2GoLYNwfepmx9vpUxAWE3TH8kXn/eWQvYzMPjQwyl
browserprofiling.min.jssha384-18oS+GyW/KjlrM11YAXzypN31C1JGszGvXvLacVp5ik9H2MjEcHw97xt+Y4xQduq
bundle.debug.min.jssha384-/sSSR5xM2N0c1JHEfP3EZ6a06mFef5H9V3KA4pbc2xogiRmmVjA/8MpFz+xF1vd6
bundle.feedback.debug.min.jssha384-7JZHyS3fejqk257n3BvNVpW9ccm6USEaT1J5SpnClCSHWIuUaIWIO2kRmzDV9lk7
bundle.feedback.jssha384-arhGMeiIUSl6UyqU3iak1wBlPmxOpeFVzpDtai7+1WmMBmyxl8ejym4NHhL0hvkj
bundle.feedback.min.jssha384-8qteN4/8MMBNO32yZ8rCb9WMM0b8xGkZa73h75zYqxotVskZZuqsVXFJYf3wXmq9
bundle.jssha384-2KLpeo4leb9/RFeuINxQW8MIkYjY8YXDwR4CUwnaxlGw48xiMjg8+EKqMIGU8eny
bundle.min.jssha384-ysnj6BzrAn5LfJF4qF/un+nLKXG9Ks7yHW45wD+Lpxdxq71jsoc2brJCIYdCqauM
bundle.replay.debug.min.jssha384-1Tk0WbVlxTmkqxT8Dvp/ThBk/zF7XhFskMvG89fyrUhIgVNbcbmFKggWEPkzRP5a
bundle.replay.jssha384-bzsrYVM2+q9GPlTVZyN5PWOU6C/TUjGUXGTqKKko7X/bYvBF78zdj3GQw74klnOd
bundle.replay.min.jssha384-F64Dsm2EQJZa0EYLg1LW08vsumgyzkLQTlFb0HB2HyGzY/EWeiaDiewbkC6KDltk
bundle.tracing.debug.min.jssha384-S5kJsR9N6FuxRScYToWAHhbAdChm5z7lRYdUoRXaZX4FDtkwPeUJe4JpLpXQYY7P
bundle.tracing.jssha384-2iyWI3F6iHDbrVBi/QCO/ReTITCl0NwgBQwxM8LIDNjIqNzA1ah+j+DbCuPU96vL
bundle.tracing.min.jssha384-uEzHdd6GNvCirbunTypncyLJnL8hYrJKhGAaEFDfeyIe/pZeRcf1mz+TeZXZrhN7
bundle.tracing.replay.debug.min.jssha384-9mRyWFrA8pN2ElqNA15nZfbfalUJVBBrM1/OGpVmaxwLbtAbGVHSab+7dNhGDAb0
bundle.tracing.replay.feedback.debug.min.jssha384-6F1W0UU/7Dk7hosUgzaLRGjWOggiB6SBkoQXFGxQTd5t4KGSQjQnAvv6dNIwI3r6
bundle.tracing.replay.feedback.jssha384-+RpO70YF4c77o6EqC3abH5JLtw0aMaGIaqBfx/8IdTNgpP4S+NiAY0CG6qXy2tUD
bundle.tracing.replay.feedback.min.jssha384-BMAemV4y0y7IEhLtPUBD135EozHa8xhPATa9+UMaw+mbPyhKIAjy9ehdutYsj4Z6
bundle.tracing.replay.jssha384-oNrHEy8Q+qAo/e6ZFcP+LUvLQ8kBibUrrrT0dCfnpJyWirib4M3ja+06cO+QKoZ0
bundle.tracing.replay.min.jssha384-XyeeYk6l9Np3KssJ4fjobSrC0rzyLAbi6O9gCWDJ/b714VBeLlYa2ti6/C9EJNDb
captureconsole.debug.min.jssha384-mt5ZNUp+oRTGf6YO044VMSDQK0/4285oqYVLj+zhLl3hn7v/do21n4v0Pa1hfniN
captureconsole.jssha384-De+JUTP9WjIr80FeYIUzOW7WPYCp+iUAD0AEspl9F4NP7xE1THFsGUKBkQDieb6Y
captureconsole.min.jssha384-/rAxz7POn/fN//JbI4JusHXNujnT1KtYsRWv+4RqA0yhZ0MAxnjtlQEG3+rDh+m8
contextlines.debug.min.jssha384-BQjgFNj7sUfdOZxW1Lyd+NVlklaRd3zWbLVGjVf0RaSxes4O+he0fVxV2u+Hw7P3
contextlines.jssha384-QElXXoos0YQ5UHvtDmjikcxYoCSXBVlw1FRN0ZFsA5zBA5X1/a2LdWW5aA0UJjGO
contextlines.min.jssha384-5VcVIuKsGeVltFMpgB5DoRm4ZLY2wD8Nej2rXbmCRK5aNDk5y73Vc5mbWy+nS1KP
dedupe.debug.min.jssha384-vMtWgKFKdRjhRrNPhTA6viDTtHNLTxCmloXEzmMz864ZUPKY4T1p7FI1qr709L+a
dedupe.jssha384-+Gb4fcLezUFToVJcHHOWmA+8DCTJ4BYUbMZa9PrTKhkktyeaX81lfE5Xze+08Cv4
dedupe.min.jssha384-BRZsgDg6ngXi5zhRAG+DYd36C+BGKGNbUiT9O4jNazTDApI/WkFM3PDWOWgnDJtL
extraerrordata.debug.min.jssha384-vl2PgZoATlSSom16CFJ/zJA5ILB26gBKhTCYTHI7sJN1zDp2lItFm2WGxB4bbQdr
extraerrordata.jssha384-iWzE5V2mTC4yFTga0yQpfXy17lMaQbz5pV8qs1kiSuF+sRdHeQ943gJU/cORtzBB
extraerrordata.min.jssha384-+H6lW9zGDkMS+8rR7JPJl5Kr6HA2m31rg/BzquKigiIr1CE3ovlcC84EyO42lBtZ
feedback-modal.debug.min.jssha384-4lCJ3DMLUOFbRr0fTxD6rv1XMumDLpOzSxefVH2P1eyQXYJyXmvDEwibXrJcyfBe
feedback-modal.jssha384-GKl82Zq5n3nUCkzXfRzIEL7eArsg307UbiZvxiGzVNi/JMz0yDwbryWAzRPLslgt
feedback-modal.min.jssha384-bCx36dL1mcu2YF5muS/Q76yKnAbtE4BO8N3z57p+rRaTGblzSXSER1R2WygkbAAi
feedback-screenshot.debug.min.jssha384-yqp2GlpuUaNyVAuTAI6ui7DzFGY1j6lTzSp/jyIr7eyKix5FsGNDdOCIPPaluQvv
feedback-screenshot.jssha384-3G6n7f0xTwpnkJpK1gyBOOx+jgiKJX5YvH+EGZ6du6Ve2FbJABcbPbOAQZCUU6xY
feedback-screenshot.min.jssha384-k6giQ+qfKM0xDOJFY1DVvEvQ/EaCeqSedXtMqhSYIffYWQB/TS60ZaHSe53CwxXv
feedback.debug.min.jssha384-G+J29s1mqGeW/Fo7cZePAbM1OGg0P6qnAj48RijrU7zhpwOpE1fVR4ZSfkJwksND
feedback.jssha384-f2jdatdoq6H26N14kaEAabqbG28DqShR5ZtY0GMP1LeJv8G0QqbFVDC1ST0j+ezb
feedback.min.jssha384-0oJtASRZdNsGGl0k05peH36z2yTJsOm333qRlWtCTpAWBTQNn2Q4ZmY7eTqJdkie
graphqlclient.debug.min.jssha384-C8U0r9UfkMIbWRWQL8NrXG5WgASnsRUJ/Gk5YwSkI0LJnjNpxbZ47Z4KPQSK3UDw
graphqlclient.jssha384-XnGXsr0vG3TVYb7LyDZD+EN5P2k84Z7cHlhP5dlZJCmyPajPbe0Hy+BBAeiLiLnj
graphqlclient.min.jssha384-miPOMc8AJ8J9a7UqdWunhkSTZ+HYljr87OSNYTsiVgaNPP8dQz+S2NJUWAsqkVfV
httpclient.debug.min.jssha384-LfbXF7oNUGkpyFErBdJp2CHtR1zoll4uBeILVmXTMRdnUvjlX+G46+F1ALQJuMKT
httpclient.jssha384-WhKV0MCXz9G1HSQ1HYC5A0pmYODmpuhodSTELj4UDJPD0eUzQecuGg/B0AWhKF+v
httpclient.min.jssha384-Bi7T930iy6WEhmS/iAW/r64Ls7DDkW41MkSar63/x3vPw0r2b2/6J2y1KCCEFgVk
modulemetadata.debug.min.jssha384-EruU50GB2asYpKY6AivXshBPPTWeKCD1WiI7dHzEwYN8oGti4yc+69Ysu+XWxzh4
modulemetadata.jssha384-Zkte9uy7RvBEDvrICFRIRRS2ZGXT+GA0EUrvsaHQEFwUo4PA9M9Uth2H/wdT2Ng4
modulemetadata.min.jssha384-t5xp1gvmbHEHzWe2Uoj6g15/62fH/PcdEpfj98Pq6bRz9kvfSvfcjnScjNNFY1J3
multiplexedtransport.debug.min.jssha384-b5X/OjnCedkAOFR8O4IiYgstDXNXs+EhvyZILSSj9h1N4woUXQ/lnE9UupC7JIFV
multiplexedtransport.jssha384-rSCTIVSdgngKwGOMF8vNwizgXhXIcfBSZ5GcFIzZtRI3FqjoPpL+3TUZcZPc7dGg
multiplexedtransport.min.jssha384-BA/Xlrptci+wg/HMMGoNH2OaE0HLHJq1utugrdk5xpygofXkQEsgnx/L5O8wM/Lc
replay-canvas.debug.min.jssha384-0c1PsuYpfsswG2iWVQA8IsbXDDbu9E4GpwMJBByaRUML99z5cRE5EjwZ79RFX/sG
replay-canvas.jssha384-aQ89M8/Qbh7GLEDEnvLvtOdx1t0zM1gB+YWJ8djY3WoO/vjqWOn1OWcR//ljfENq
replay-canvas.min.jssha384-Af8KY+7O++6XpUhfe3GV+Y14Dj9BhM380sJfuaY+8LBQnCETZcPQDyt0gGn13fTm
replay.debug.min.jssha384-sJX7azjkoy4FV8WqjdUttYfpql5reYyDnJirKjgwxwP2rUt4Q+63JRtJh98ENHk0
replay.jssha384-ARaOGD3DA3N+uwWQjrgPOX79tSZsXm/VjMwK7BcWosGxsxwE9v0hl3D9b8BVKEpe
replay.min.jssha384-W1Igg7hvCvjo54F9fvePTXk84947VfWjIBWgahohpYgBMEwOw5GCbj2i8HNjbHhU
reportingobserver.debug.min.jssha384-mhuul3IYps4KnsH8cYY9e3H7HYY0Xs6ZpO60iS9MDlgSFBnbuw6sQf8YMYHVFlmW
reportingobserver.jssha384-WL6y9nf3gztcAdaqtiCyShBd+WVwpPk4UeNBRu3ssPtDOrzx4c04Q8fSLXTJvyhf
reportingobserver.min.jssha384-KSvrG9e6G7fcKD2aZTuC+GIZc7/D1gCQhrcgA6a3ZK7eWD4+ydQJT5Eu3MaZaYIT
rewriteframes.debug.min.jssha384-SOTUqEZuHMGz/KeBn3G56lMsUbHi1c6AbExRKcfYghGGiInBTByI8b0yIswlgSFV
rewriteframes.jssha384-sspjeAKQIiYQg9Jj8UADLd9rYTPfm7GwPrqCqFuijYyz13zQgUWmGMNDpCrxFGUX
rewriteframes.min.jssha384-/wxkvWG+YWGBB510WMbXaEjC4YolsiuIockMwe6kWFlCy4943HPYT385UoaWhiIm
spotlight.debug.min.jssha384-9MIOIak0WSNys5lEbthnIYM5vLBGsSjqYCPCfaQhtY0rcJQd2ObClHZMFFNul0xI
spotlight.jssha384-qxRTlujFBRAwdt+eIkGzifo4egDSlJQgPj02ch57ZjVTkwj1OwpPHLglEj/2Hhlo
spotlight.min.jssha384-EYbI1kQ92l9/TZSGU2f+80oV4MqGQSuxdoiRTiNS+KNzWrwaTlj8t4KBkCqOy+ku

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