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 disabled.

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
<script>
  window.sentryOnLoad = function () {
    Sentry.init({
      // ...
    });
  };
</script>

<script
  src="https://js.sentry-cdn.com/examplePublicKey.min.js"
  crossorigin="anonymous"
></script>

<script>
  // 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
    });
</script>

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.

Because the loader script injects the actual SDK asynchronously to keep your pageload performance high, the SDK's tracing functionality is only available once the SDK is loaded and initialized. This means that if you e.g. have fetch calls right at the beginning of your application, they might not be traced. If this is a critical issue for you, you have two options to ensure that all your fetch calls are traced:

  • Initialize the SDK in window.sentryOnLoad as described in Custom Configuration. Then make your fetch call in the Sentry.onload callback.
    Example
    Copied
    <script>
      window.sentryOnLoad = function () {
        Sentry.init({
          // ...
        });
      };
    </script>
    
    <script
      src="https://js.sentry-cdn.com/examplePublicKey.min.js"
      crossorigin="anonymous"
    ></script>
    
    <script>
      Sentry.onLoad(function () {
        fetch("/api/users");
      });
    </script>
    
  • Use the CDN bundles instead of the Loader Script. This will ensure that the SDK is loaded synchronously, and that all your fetch calls are traced.

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.34.0/bundle.tracing.min.js"
  integrity="sha384-cRQDJUZkpn4UvmWYrVsTWGTyulY9B4H5Tp2s75ZVjkIAuu1TIxzabF3TiyubOsQ8"
  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.34.0/bundle.tracing.replay.min.js"
  integrity="sha384-gHcGsjf15+oILUd/CRoMCbLIjr/uvLY+dIT3+olcPVFtghwoWJjtIHCrDMaOkdbN"
  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.34.0/bundle.replay.min.js"
  integrity="sha384-lZ1G75zByMnlFeZydgHd7zf/yOUL0qCVrb20JP6GNSPaSDKnRCOcJp1V1WExXX4b"
  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.34.0/bundle.min.js"
  integrity="sha384-53P6MMkVn0DDaKYIzeUJsL4myy0ml1QVsErYuIdCyys2xCGn9wplX9qhVMmqnl/B"
  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-q9h6GKCRF8Nap6EnBD1Ua3c3Dyrere41KlOEuZJX2mfiwBk3mt7oBOmIj8Vd9Kj5
browserprofiling.jssha384-e+QZCtqzZAptUGenexAkHVGaSYiFOqiqpiO83YH/Pl5i2W2LNbqNsCvezZrIiBYg
browserprofiling.min.jssha384-GMF+r+cQ2mT3naJlVLjaXMCGn/N2JzljyldcpVkZZjq8mc8mQppAwqNNQTBPnNcX
bundle.debug.min.jssha384-/toWiv3zWfqGxTpBANDH2IG5e+0d5Hq49T96MhoYoc3JeoUhQr6il5mrPC+cd0KM
bundle.feedback.debug.min.jssha384-66rANwhbHqH3Do3WP8VD5jbH5KNrGbsjd8ewc+NmKJm58VIfsTSAXoT4xefNDU8M
bundle.feedback.jssha384-snT58uTBU0LuuoQPz7XvhQsgTsFR4yfo4TyzJgACQA7/fk363guIDiDskrwqU0wc
bundle.feedback.min.jssha384-eOYkCYRrYa8tY54GSbZXU+Pg5BUU7SVpGckAJKteEL99b4Iq0d10wTk/rYTwuyl9
bundle.jssha384-jnNQ8UBTcVxo7oeW4OLzGs9Bp7p1F0f4m/ltzGv17sKMP8ymze6y8aGgODQFSTO1
bundle.min.jssha384-n8k6Wd3szutR9JUdtise9ld53vyMA6ZdjDlPD60FI73PMps1SAs7Pverb4ZbVcNN
bundle.replay.debug.min.jssha384-VO27jDJNQer5E0lk/QW/BZEBt7JmYm65VE/KFbwVkgRJ7MHdkyOYBvidvKiNSbj9
bundle.replay.jssha384-xJ3V1clpwTIT5zg8EVCZ9lFvwxZNmcepLPRkiPQdPCLJrrWZK1ITRpla9JZxGu4a
bundle.replay.min.jssha384-SdHuaNMp2RoB7T1Y6+bk5xDCTGfpTTOylqpqBwlCk07ovc8EgoJlVbE2rCh6yofE
bundle.tracing.debug.min.jssha384-9w8MG6ZcJm2bxnx1+BMkBc8gDpfNNVpgs7ZqLWc5CdEGJs6TnJ/bPk+wgIoGkL0N
bundle.tracing.jssha384-BiJJLnm1qBnWECRFVSfMSO0gwhXR9AIhFk5ZZBGSE6aDJ46TCac0Ew7jD4m44HHA
bundle.tracing.min.jssha384-r/YoQxyD2g4gSbNPInkBufUjDkbcvzkQMO6aBnZ7tJexAZVslAsNI+7f8Jik4OC7
bundle.tracing.replay.debug.min.jssha384-ciyItWn50XmPR5Frtp9BfUoHM1+KGPMe02m83mubJqA41nKjNEzVrVTVIsCNfimT
bundle.tracing.replay.feedback.debug.min.jssha384-rlSueWNwcNq6zyrUnupeXLARQ1ViiSrpqvoGM2wvwX7xHVPmMNi0GmtvvLIvqEc/
bundle.tracing.replay.feedback.jssha384-4riQ8grDbk+Xr6YFchfFeKKU2iVKwmKAFofVJ66JwIsRKEeE4t8rYaS8vWapvfSL
bundle.tracing.replay.feedback.min.jssha384-s8zNYFL1HB+qjQMRRiLgKTTWqz2qJB6a2les0lhvDXVRK3H2enpTmvvsKJ4xWha6
bundle.tracing.replay.jssha384-TJLCUjN+NyXEcNOCouoJrQMeaU9O/9gv4UEiCN+JOUqwyw+1mUaH4Sh6iNP3SZiZ
bundle.tracing.replay.min.jssha384-DiF9UNZjsY5DFAlzB+LjBuu3eLmMWKvAIhWkraMNeoek68GSdbDatHl57hkVTc5J
captureconsole.debug.min.jssha384-1TuZFaMDH05ZBf/lUSmCHw2LhcJlCTuOInv8UBR8tJag6hmEmddF/m/OsRy7seSr
captureconsole.jssha384-HNQ4plaxEn0XXRrNBVyaWE41/jG/H1PPc1BtNLtsm5OTbMVosskEferqZ4Zg0OiS
captureconsole.min.jssha384-KqwfZmiw6tlC8uk3mZPDOFcVLc65fjL8Suzk3QfMOYdPA58s5Re7VvSH4H2lJVRU
contextlines.debug.min.jssha384-SyKZMve82CErc3EJ77wf1EkEajkQz4ZfnqR8AaK0v5eQ2FY+lblmq97ngXrYDddR
contextlines.jssha384-/k0IjRzp3Ka7XnAwx9rMI55pQS/9XCLKuF1f5xu4OhSLTcPZ+fOBgQMkv9Lc8nLP
contextlines.min.jssha384-bBPdO3KGfGNoBlzzUWL0AxwEbB8scCUV4KYhkbR6zfqGvoVmjNLexhwg8w2OofBL
dedupe.debug.min.jssha384-u2hQXy1JMF3FHhsuZ2y6iPUppU0D7RCbDylpy/G5dR4EnA1HZp+1t7MOMZjo4rku
dedupe.jssha384-OXoqBulPXlM9fT4jdjHAHeFsx6xypMr+g+bu+1J7Q0Gp2LQ22lU4/vbOAQcU3rAs
dedupe.min.jssha384-RX/B1G4pJ+eNcYa0+ih/HS56xb+Mo1uYIAr/xLnLWTRZZSAeLRXfFoUTdT/Dc3Fb
extraerrordata.debug.min.jssha384-KJrnAaUAxFPYL/oyxnq2t7CEv0lmJgYn/aGL5jlASZutcRW5KxXzbo7EKdcT4rVT
extraerrordata.jssha384-GacEKVtHMOxP0AKk1aJ5SiltEjakKVz7HA3uDCdP9pMxGR98L8vfBxNop4226Ups
extraerrordata.min.jssha384-Hk3Wc8LVqu8vkhJoEon0PPX9BuRaZY89V596f9twGpbnatNJ1HgbszySKkcY5arZ
feedback-modal.debug.min.jssha384-teAYktW8YMnNpdn1QX5baofmo85m++VM+BscYJplSX/whYBj88OAyD0h3T8NhcwE
feedback-modal.jssha384-3Vz4Ptj7pIi+ez/Bw5cWiaeEfXu4Vuo5pkUhVw05qH/ZlF/MHKPJ8aNzJZUt3Op7
feedback-modal.min.jssha384-d8sF5Wmo25Gc90BGhJ8+c06SrjlUC+XV6j6p2HakAXIX/7WNEpoTcODf7gXoCUMC
feedback-screenshot.debug.min.jssha384-5EF6EKlLZ2z6S+Mx4Xh4YOls3fEX6XlI5QSnZ1MPuVaUuEYXK77njl7cmhxCGur+
feedback-screenshot.jssha384-Lya+8AtIQ2n6G5C/odDdkQ/yUI4U8yk/p7LPNRLAKT0GIYTPlRL5ifPfzgWWeUMa
feedback-screenshot.min.jssha384-g7g4pm0AhwcuQQev0BIfWJVRm5X8I5kgmKJPUu3TlZjCDSSdHtr2crxHO52CPm/U
feedback.debug.min.jssha384-AHSN9r9TRG4CYAQIiq/g1e0vbTnfA9wCGGeGU/HkkjVnM/KfoATsdfPzaHYssZx+
feedback.jssha384-PoH8B7SQQTL39wmr1FFOnfZu99UyBgWAAFYSEMFB3KlzllC0QAM+689wdgLnOyj1
feedback.min.jssha384-FlVrNF4lCFoFEdCtyIJNYNJaPLzM0CyMhIo7Hw39vjO1vbsoq30LBZg6cXa5ntKn
graphqlclient.debug.min.jssha384-4XO+B9rLsOYIatVB/Kq9Yca6XyiRyA7PNaKh4hSqeD8NQ5vpMQjfJ2WGDXHfPMwX
graphqlclient.jssha384-QzMTpWH9BmxFAD517cDFEK8REKxTjjAfJrKd86e2Qm8NzKyuhRk47CwQTXRqDhzh
graphqlclient.min.jssha384-CZ+NPiFHp6KvACBrOE0kl2YJLMgJrVJGk4uIFgE5SLKiVVXOgLTi+uWLCLq6IUpB
httpclient.debug.min.jssha384-6pysI5iqhjnx//5XtwwBfhnX9mMc6X+An8HvI+z1uMUMfbX0zuyTf1YilvjSMG7k
httpclient.jssha384-EKAzXvSBoHbCeAm85HztO1t/UQkpMbPzY2XVCTsv4N5gjhp3hP0EWQhxVI+WXZ2S
httpclient.min.jssha384-xMCWV1xCTd4pCBph9b6SAQPO5KgIelhzGEHk3BLI7uld3FS5hpTb3xy89tOaoYLK
modulemetadata.debug.min.jssha384-5AHpjqesU1iPL90kTpQ88CLmoK2KLAcfdjYI+3rDNKAFG6dQDKQL73TSZUYzKkFG
modulemetadata.jssha384-RCixMSwO4zH45ikz/WtX+Mmj6wOfZgAqh+6/G9C93Ar0KfAEOmxqvmQQOBcGfVoY
modulemetadata.min.jssha384-zUekfD14bYjHLQXb33cPSVds+V0Pfc9x2Qy8K6CJM35lEGcLXmj2qYmidxNgRQ0h
multiplexedtransport.debug.min.jssha384-MMTNKZx9/toCGIxi14fo0c63xac9Dyo88zEZ3Fpr0bOtZLg3KjBlidTDpf+1p7Z+
multiplexedtransport.jssha384-TZxkLrICQTJQIubv4PF/p7iC1GlupIAdZnA1ejqxvvzTz31kW27I4RolSOEnQNkT
multiplexedtransport.min.jssha384-oBLyyYUYI9wls0PU2BTUS7XrtmfYnVxYyJv4k3ra77hwAOJxqOVRqNopAbA0kmCH
replay-canvas.debug.min.jssha384-0CXOVUWJtQ2KMILVDj+rx28cUU2Ev9TCHEKCKO7iNJloatBmC8DWzbnW0miB+WXt
replay-canvas.jssha384-HxuGyDxLHJpA5uflhLbEjHtNlNMWZes+Nu89yvj/4+qSxGPvTPuu7z0DcG4GqWkA
replay-canvas.min.jssha384-2R8/Uy5gKyn4HT44pXp5uJVi7fE31R4xpaQW59qEdrZ4KFcbkb/EDFtZNIqdQp7j
replay.debug.min.jssha384-G8kcVw00k/a38MjMKbbnptkATo8MJ+tNExVuMoYLUKvu5m0ru71kOVj7xCgtg9Pt
replay.jssha384-OjsfmZQmWRMV1aAzjwlKXoz60LnmJeaiC1IMymVPbVPdMmtuXtMZW8tCoW8ZctkP
replay.min.jssha384-aalLg8EFmvglFYtCzZeShPpKXaVPjxOSwXIOLTqdFz7Zcf70kPmaMwGt6hnDEwBg
reportingobserver.debug.min.jssha384-b3SiItMBMjDLVm9ZQwM4XB5/njPaJg4lE0yS6dhZ81nlR6GDYtg3qmV2zrTedcel
reportingobserver.jssha384-X7OIMFIaX8JvALMTAWYal3kldhvI+dJDnlbhZ0p/Pv8cYui9HNhsT1WCT3utoj6i
reportingobserver.min.jssha384-kCaWq6QJKJmS5WWeiXsyS225wtGIgABNYCodgIj3mbsVTgt3DUXkQmsr2nIOQ/EO
rewriteframes.debug.min.jssha384-Yee9+bdZq3isWDIqzXSUptIwuNdBlxcmdHWjcnXwBor1jjqrjPxgZLhUEFbaWE3Y
rewriteframes.jssha384-y1yTsckucdlz31QmiDovwmgsC8YRV2c9y9RR7lue304j0xeBHwfu+YwhyvlJkdk/
rewriteframes.min.jssha384-C46lwrpyL54br5NokVI61KpQcmalCLW7wGCfMtNMmb7lgvRCw1/Nl5DYbWn1nMDg
spotlight.debug.min.jssha384-YHBQGxyI/3KGQ9HkpNrEpuF4tOruWRCUUqjrzfwwGNBcCwywcF7KKcVsCzl8dh2T
spotlight.jssha384-/29Lb4riecYcqCI8RhQmituzDjFj8Mm+b8BwX2BB15gHuA+pkZVYcsVA9nbjOWu7
spotlight.min.jssha384-A6RtKAvi15GNgYzJbkwL1Ffhj6J2AJcyK+B5OKe0u7fOL5Y2D0xYgcrLI0jpGw4F

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