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.50.0/bundle.tracing.min.js"
  integrity="sha384-QO+Z7LiiB2H9j9HdM0XRUB8B88GIYAprsPvVyCyiYRVCOsyshK3ihlKt46gKdO5r"
  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.50.0/bundle.tracing.replay.min.js"
  integrity="sha384-/WWXYsJR58bAs/uR8MAE2jP+eFWyZ6Li5Mpi/h39JLnzy6OE2FUP+zSmxGbO5OUD"
  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.50.0/bundle.replay.min.js"
  integrity="sha384-DoKo3WPZNB6vrxxqaWNlKbNxJjVBbbbb03V2jUOBCORVMj01Y3LZG5Xa0YugRiA3"
  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.50.0/bundle.min.js"
  integrity="sha384-tw6kVDJZ0XpvXyncjRsc774XpCrP6JfK7bdLy9STOFiEeTeKnLty4JE/dZk+/DSH"
  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-Cs1efXUt3OGGToWUd8hJ9pLVFej+e0JBb6lZ9Lk8wMnGeVKJUocLbQ3c9A/fEuqQ
browserprofiling.jssha384-Jjpwmx9ZnvR+jTqzX+RtY+VTLuwITV26sTbTNVUG9DDCu5zJu3hC6dScYmtyqRJB
browserprofiling.min.jssha384-FbHi3ZAnfE3ymMN0lI5XHu8mUw+7hNVjCn3p4tILQfX1gZ3AYEO4ur5Lghhgcz0z
bundle.debug.min.jssha384-O4F5JmA2q7IrVpycPzv3mg9xQA/eBH1OpSD1sCmzpgEiejADvJAt/9N1DWeHK/Dv
bundle.feedback.debug.min.jssha384-dxIpUEUTLlbOL95GjtJ7Vhp7jP9/5Zwi1Z1j3HBhCjzmS43fQgYqxozAgrYqDwYC
bundle.feedback.jssha384-6Za8RnVdl6KEa6yu7UAkwm7evmSLG2J0Ri2eu8+ilfQY6oD0CHE8hiwAl0b9Evwk
bundle.feedback.min.jssha384-FAEy1ejFGPp3Hw9nwLI8x+5zeNPW7ueg9OJudALbP5vZnuabH9HRzeYswOLnbQmQ
bundle.jssha384-/mXcrN/qAPXCHGs1h30oxJrAnskmkuNIUugVyhHtfZhOsQm8hDAr9lTk0dzFtQSO
bundle.min.jssha384-tw6kVDJZ0XpvXyncjRsc774XpCrP6JfK7bdLy9STOFiEeTeKnLty4JE/dZk+/DSH
bundle.replay.debug.min.jssha384-DgWDGlKPViH/IMFDkUku01Is13YCHk3z+/DIwG3VItQj4zbRQ2cw4l0zVL+TF8s9
bundle.replay.jssha384-RJuJl5L1xllh8FZvcSQIXfgUaOUzeQFg+Bnn5Cbf+aiIs7+cZdWWfXAdA1M3qq+7
bundle.replay.min.jssha384-DoKo3WPZNB6vrxxqaWNlKbNxJjVBbbbb03V2jUOBCORVMj01Y3LZG5Xa0YugRiA3
bundle.tracing.debug.min.jssha384-J32wtMaLcT4de0w7w2am4PFuN2Y2Lixc9tzNdqoIZ6AO5qz8iTgSb/i3kHzZ3dWg
bundle.tracing.jssha384-JGuOZMTuzN0buKiW5sKxLBNrHgGk1qXC3pHa4Y1LgNVyS6k06cV7r6Z6G4x1t5Zz
bundle.tracing.min.jssha384-QO+Z7LiiB2H9j9HdM0XRUB8B88GIYAprsPvVyCyiYRVCOsyshK3ihlKt46gKdO5r
bundle.tracing.replay.debug.min.jssha384-UOs8WAm/2OgDcMdFMvcpZfkxN8+y+mzEXuIZ9Z4LT29lnk1Cr8R1hOE32FvWy5um
bundle.tracing.replay.feedback.debug.min.jssha384-J+BeUnGyM6+I65LAGW76NHNA4wSvYHdfB/d+5l6Qowj8Mki6riZvF25a0+IHS1yB
bundle.tracing.replay.feedback.jssha384-2pc9AV6QakyYXsbzyhybDJxiybI3hV0gU1JRSX7J+qheARkx57k2mD5A5Ih1uYSQ
bundle.tracing.replay.feedback.min.jssha384-qGshkuR3YhB0Qgj/nC26F+Kp7us9Tp9tbmRginjrv5iLmYPPmOM59KJ6uwvwJDZS
bundle.tracing.replay.jssha384-YGUPKmizI+7rAtY7hfViWd7/1WCMuAxqpqyFPTesOdIXpMU15FR+zSimbnO5hWIt
bundle.tracing.replay.min.jssha384-/WWXYsJR58bAs/uR8MAE2jP+eFWyZ6Li5Mpi/h39JLnzy6OE2FUP+zSmxGbO5OUD
captureconsole.debug.min.jssha384-U0D9m4kyzo3Fg7XwYyl2yz2UtCwF49A287EEVXkUu7g3Zg7+E9RsYMrLvbE0nWH4
captureconsole.jssha384-Bg4D3my2CmdrCuksQA6iRTYsB7KSblWKPeZmcKcx+whDvdaGzEqY+mEDn844diCv
captureconsole.min.jssha384-Kq5mJR7OodcQHRqDLR+WOqs5xMJXom8amhhQOYymFFrNX/Y5Y0Yab8EbwImOgW7k
contextlines.debug.min.jssha384-YV3n+yD5iBGAj9in65mue1QBvBrwOVTDFKM8/u7inS1nSSBaIEJLd8MkohpVTySl
contextlines.jssha384-bLYomyDe3EP9G4hWJqNZ8fr9t4fDhPasSuBJSLHgpru7W0nkZlNiOuAzyK23zsJW
contextlines.min.jssha384-h+zT778hDMSBaaF6lQwh25ltEKWaTQdXts7zQcSlnhuq2UusMCZhNOHRW1Say6n3
debug.debug.min.jssha384-y54nfpg6zSPBr4wwrSF7niGuZjqQO6Z6uOG7frTGQYOYtkBQC7TbWvnhENI+uM5x
debug.jssha384-iYDw1QW3R1IYJmMjUbl9GHVUDaVwG+w31ecsU1MEt6hxBVqWuAAtt7a8FmIEt/bq
debug.min.jssha384-NHq5MEbATl0pagB0lqLSYPhBfIGqXWD7D41Lo9fVDaVqgxGVCeq8wTTyHh+uh3ts
dedupe.debug.min.jssha384-g5m0htmR4TceA63YuMZTpacy84+o/ZYQKBpON6FV42JTIh/A6NQxoK7WH9eCsWsk
dedupe.jssha384-+Zsh+xabUmrXdxa6QLjLY83sigSSrYKf7I6Hqy0PGnv0b2io8vCSI26Oxe5r0tJy
dedupe.min.jssha384-xCG9GQb0mcbi73LeablZ8CcHd7RGRVW3vI7jrwJEddo8rswKXHHDqSxF+KcD1iEF
extraerrordata.debug.min.jssha384-nHK/DQt2I5GQW6Sj4dNiIsNB0uyoCUNo7CoZwgDbVvXxYW+fQ1rI6PHpuhZltUSf
extraerrordata.jssha384-QK15Au4mfE7xB8llY7zwSiF9fGEOU92ZXN6n43U6iMmxMKcUms1jyp64I3l8mI3J
extraerrordata.min.jssha384-t1IorrMi9dZ+UhWIh7Lt8pjadNg8Sbxp6zjyx1weK2nHctXUs1NWZo0VadFBss4n
feedback-modal.debug.min.jssha384-JlEBRqXZkl3+lzLzerWIqRYzVWKrDGs40O2tXgBXMCL5m1eNqXkH+Lw4pbHZcend
feedback-modal.jssha384-cq5xgIGsEnmaRxHPHWh/HgTlqTAHRQLV10BNR2UGe/ZbWUCMAHc3w6d+Cw+BPm+A
feedback-modal.min.jssha384-MGArKNz1vK8X04M9jRUeOfgeJaAeYd8wxFsW0LSk3PGpohNyMK5PXXABXpOz6WTq
feedback-screenshot.debug.min.jssha384-50pR+8hvXPH/ReOsMc8h6B7/lT26oIg3VBaII2sIhjjTPaYVciHWkPZyKkrbRZZr
feedback-screenshot.jssha384-loZO2SQoKrT2bPNZTrc8YSiTHoyaWS1X8eLCqNlv7WOopzsodTwfZIVsmx6sFnGc
feedback-screenshot.min.jssha384-d5SYQS5ux3mWfgtRUnc77MRIZsTZGk76/2e33U8HlWqQVPm+WhOphQG+ssrUt0SH
feedback.debug.min.jssha384-w1EwnclRyb62/nDH4JQEzT4FVdVZmlMch0n7jspNq6HtoxFeiQy4yrZsIfnv60iI
feedback.jssha384-aldm9C5ZEqnn/ns64ZWn31L4FKA2pbrArkOmRl4hs2CXLCq6iuzvGYlpeurRtWR+
feedback.min.jssha384-dPqBKKMc8iNfN9SUAlgRiZnbGOkjI4BldB4UBkuD5S4LksXCJHtcIB99w6I2NxgE
httpclient.debug.min.jssha384-8rrTPb+I3ee2DP20jIjJIwYK7y96IkNH9DSnzRvvfhQ3RvdrZ2hA7R8BYnsRTlQN
httpclient.jssha384-GMA+WpagOHz+eKAJuq9lOjt31Fgb0VC50DSggRyyXoi2yLDjM0AipjA4/FN8YeLO
httpclient.min.jssha384-RYWJH5nQOD4rA58hkt7HH7ev6/9olQVXBP01lr9LUwjh2BFj4bT3MRImByUbUGTX
modulemetadata.debug.min.jssha384-rVO7LpCe5f5fJQsCM/wkEGzqpnh/sszWsRVcIsL28l4cO0Sj2GGUK2Kmhxjz1AJm
modulemetadata.jssha384-AVvgbFiyM7CnoiVmn2ljBxZcn//Pt6dzHpUE61ohXoys9A40xGKalpJQQrhEY+eJ
modulemetadata.min.jssha384-2VWpm7Jh3p3vKqPRmKlAEHjBOuwrsVjqqho8dQrtTjrx2n6735eiR2UF7gS8B/2A
replay-canvas.debug.min.jssha384-2eiVqg2pPAyOL2LHRhors0QIz1ZhtlSlczfGleGfj0XweNx+r19vCdD+wiujW2f0
replay-canvas.jssha384-qvW6o3Jv4Fhv38wAfy0Ew6gx+OQyMPO2KTTYhDOdi4Ucv8ePgB+3Nnk/B/bxD1gL
replay-canvas.min.jssha384-iWbrUluQcqnHVVKPlcT9+WH0sdrSMZ/pIp+wUEPzGtvg5QC9586D3Bp1b4BZcV1c
replay.debug.min.jssha384-6ruabAvpEIFoisRKr9mcswk/Kchvo3OZs/yKmz2Bk3hYGsvV2HOQjcZh0bpoOjP3
replay.jssha384-SW7j0+KhBtzqpgf/rU8pLwiHFODlOEZsP4oPVeCWa0IyF2vHF+NyEkjJp49mvGkI
replay.min.jssha384-DSgExM0FmkN6hZl27x7sse8D+1JMJbGM9NXXR07InPMLUBC9Ue6T85KSX+hiBmdu
reportingobserver.debug.min.jssha384-lkgTKXeMFwT23/TFU5llQk1YBQO60+MC78YFmhf3vcRWXrCyJANAKV5ny8CpGLiG
reportingobserver.jssha384-K5nILBDq6Fr7UuUMoox76Rh2AT8FeBX0YJO5CFASm8GF/vZqvA6vqb0gmXK9xZXV
reportingobserver.min.jssha384-5ycAvuEmKuEFt4AVitg+6NE1lgosMiSMWxFRGv64P9n0F9NbkrKmGIrElfeUV/Ns
rewriteframes.debug.min.jssha384-mQ9D0D/woPBm9IQ9TB8JH2Ypfh7rNRcngywPQJOmqea2xkzO4wCnX+7xc6XU2P1f
rewriteframes.jssha384-voB5Lfuw3eBiKsjKAVCq0BRwchUlE2RJP4dQYzTdvxqoNYoq0DiVJ5kFtLaFRtH9
rewriteframes.min.jssha384-LH8bvReg4S7h5t5pIXFKwQtv9tS6SAvMeJYF/kpbp9U4alswVYXhYHnIyWFIwvFO
sessiontiming.debug.min.jssha384-lRIVlwYE6wGCIrooMnLtBcaC1QpUYppeXFfTPtk2xdtU3KAT+6bRCHWewMQm6M1q
sessiontiming.jssha384-brxU2VQmiYRDPuf2m1aYICXV1Zg5a1RXe7o4RaIt1zFHnzfu1aa32Zr6c77r2B0n
sessiontiming.min.jssha384-00VvsJH/dVb+TOgqZ18rSBh6flSNM+CyE+jTN8rfiVQeMwJx1iNxbBQQdRpopOEy

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