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.54.0/bundle.tracing.min.js"
  integrity="sha384-FcOoWwGt3BRR7L4NFYD7vSSpgZy8+mIhMVjjlEL3G197+f2IzKTIZ71JnYqNJYCo"
  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.54.0/bundle.tracing.replay.min.js"
  integrity="sha384-K0NUbsLfm4LERusNssFeb7sO/Nl+TTWYzPsLdIoYNENze4TtUzPa242pNMKxgjnm"
  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.54.0/bundle.replay.min.js"
  integrity="sha384-1dsrYqa5gW838wdhf/G0JS4Uu8+7khq7JufIHwyjU7ZfbWQJpzsBsMpnnNxhUGmH"
  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.54.0/bundle.min.js"
  integrity="sha384-OOkJGcfpcHOW2qdROjcfMtqqMTrDnSBag7fGypKUDA4WxyB6mmS5cMzY9YBGcBvF"
  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-t5lqgW1e1TF6GvFCDJpBRWGyq5hnTAUyitSKwaX/Tf4Mx5qd1mNM6W+UHS1eel7U
browserprofiling.jssha384-PX+lwikNlRSYE2GPA27dwg5BzkJff2rg8H9TL+qTA7cTAemLezghtWUiovccyPU7
browserprofiling.min.jssha384-lNN8bz22Wnmv5oWyq9wauOOn/qEjTp+71ahgkwfWQKwoVFBoGDYWWyB4E9E5S42Q
bundle.debug.min.jssha384-B/i9mWooO0id+vk310ye5X6oKpr+Jjp9val0mlypuMY13P2FdRoxnJRSUAUgXhQn
bundle.feedback.debug.min.jssha384-yQzfDsZQW6k9zpF1i4RHs2EM66qk9ozEOMS7s8Wd5M0noeBZt3y4WnShiAHT2j67
bundle.feedback.jssha384-4kdnqd44rRY2vc8TIHHF8GEE7kh7lVPJPjtWxI8mYUu+m/AR9G0lnmnvyYYwyomR
bundle.feedback.min.jssha384-bdF+q/SefES1kCntjuGocmo+FhYU4uf6rurEDmUuldIwonJ0Ze2XrtXzh/cApFvr
bundle.jssha384-7BCAVHkNs/VqmP90lh3cg/CaJ+1uS98jcT6lHxf6mhk0Yv5Xb9nQU1R+EqZIzhnq
bundle.min.jssha384-OOkJGcfpcHOW2qdROjcfMtqqMTrDnSBag7fGypKUDA4WxyB6mmS5cMzY9YBGcBvF
bundle.replay.debug.min.jssha384-yIwAssehnW6HmBBFxAMHrD6r9o9Q5R7QodPqoE2PFp1eox6Dsh0z8duUBokHvZYo
bundle.replay.jssha384-aJ3WYgO6zzxNWakCNudESXC8YaVo83Q45gEDM+PtTFvNFxGtZgX75OqPeCbQFXol
bundle.replay.min.jssha384-1dsrYqa5gW838wdhf/G0JS4Uu8+7khq7JufIHwyjU7ZfbWQJpzsBsMpnnNxhUGmH
bundle.tracing.debug.min.jssha384-7I8WGSIFwmePMtP+PUL1OKF2l2LtSQsT/DHPYNOT4U/JBsRsvSqvtftD0DNWYF1q
bundle.tracing.jssha384-9GhciIYEIYXBmiP4NM0VeHXoTiLpg+mw2siSG/I1zUNFii/xnuynbnjhRoJxdnfg
bundle.tracing.min.jssha384-FcOoWwGt3BRR7L4NFYD7vSSpgZy8+mIhMVjjlEL3G197+f2IzKTIZ71JnYqNJYCo
bundle.tracing.replay.debug.min.jssha384-9OVoqVOdjBpcE4eE1VI880bH0hRLdNdo9d+l7Hmcnwqf/Wvie+VqV3f+NtcYZXhZ
bundle.tracing.replay.feedback.debug.min.jssha384-wfHvfUXX/Gz2gB59K1rwCPqZyM4JTZFpZRDbqTd39TaK6ukseSEz+6oxbDcBy9+X
bundle.tracing.replay.feedback.jssha384-qpw5P/Geqm781hKWOopYfhm98HqrlGuNnBWF0TUPqasmpMtINM+PdYzjFALLYDt0
bundle.tracing.replay.feedback.min.jssha384-aNUE5rjATOTfMaX3r6V0p+hEE3m4vTWGPSimTkJPd/BUCVxHJVWatOVybGs5Likt
bundle.tracing.replay.jssha384-V9S6xqSqkzowvcVh7j6iZzEoqtFqxqVnnitwWN+yYBirCpukCk+LBI2NNVFC9w/Q
bundle.tracing.replay.min.jssha384-K0NUbsLfm4LERusNssFeb7sO/Nl+TTWYzPsLdIoYNENze4TtUzPa242pNMKxgjnm
captureconsole.debug.min.jssha384-z/o8ddCF9yIaVNqv0N3X7C7EmbbrtQWfngbQGfgaIvz5KD+2+FiZdDitU7fifpeH
captureconsole.jssha384-bqpSsNOSdrLoEmMhVqWVhZKYUuosp64wDZsD0q/FHA6khqDbMhW5FYXxMaRFPA5W
captureconsole.min.jssha384-0J6O04K15U/JK9yWgp2HxDYCLLlxn+gnEO9GJR0JWEQx99Ih0A6/kLbd7vObNMZd
contextlines.debug.min.jssha384-xm1u/UABsXOvJl/v6mNv2H+/XynpvWvVR9D9bEXX/jFEGuKa1JAbnMjQZl+GCYww
contextlines.jssha384-Q6qm90VminsdfaWzIfCYaFvln5WpHFOS2rdQw+NNmE0ehO/YuUIfh+XOQIsft+qK
contextlines.min.jssha384-vO2GZLIP0T8sFX3/0NuDGos8nu9/EGfumwi0GPBgF5fgajv2hlDllFg0xok1T2fU
debug.debug.min.jssha384-2vQ8w7Nf14EYKgwpAoXrjT0itAQ21yQ2fgINg7mJp9hYBx+IOSrZgnGyEhXxXwAx
debug.jssha384-jRxdaiwoVIDTrdV/SAAJmN+7aDV7hgHjHUFYOgO9hbc0yNGJwmJ1pG99MOhC2qaC
debug.min.jssha384-Vk+1wlt43cH3JNPQxeG96J+V9BJUkafWofLXNDlgsDu6q9tgIfFKVFI1UPWfDYNW
dedupe.debug.min.jssha384-hBzhtbtZKBs7UKU7dAQfmMarGI7fdqeNi6/VX4p6NOQiCxN8M+xd4fs2t2yeKMtz
dedupe.jssha384-HSy3VEp2DH9g2ACGcTHdcMNC5eV089Jm+pvMfWoz5+4kjO8/URlAqa3OfVtHd597
dedupe.min.jssha384-Wm7+DsXpZX4tqC5ub33ofpDnJbSAZPZm73zCWigQYlYEp5eJm+3CuXDwcWVXCyJr
extraerrordata.debug.min.jssha384-rdva/oaqAnNX4FdrJ4iCYoSkdVWlLjI4r6ArpZD6cyDFUwXhQlExJuOihtJCQovR
extraerrordata.jssha384-1MCR6ty2TlikokF8IE8/kfWsshRGMIKgx6oSYnAhIHHe/VCbXf+l2ReRXYBkUzA+
extraerrordata.min.jssha384-QO805b5U1nqiiQEhLVPptEIFq1L6c8UgLcQLc20qI3GVytVIhq1m51G2F/gkf3ki
feedback-modal.debug.min.jssha384-3Efk1dOOXwDTAte6BBcPABq4O4AVGDXm/4lzZxpGY693R9Mh7ZplNB4HxT5KdmX8
feedback-modal.jssha384-WHiUIpNiZSHcSGy61AsddptZlhSwb7ZatWwCdGhZ0tSPJokcdeGL5UtCDPJLIwos
feedback-modal.min.jssha384-MSGmdgV2Sjy2XAS6bmb6qbjc8s7y1FRWSjzdOjuVolevvRJe4GF8TMfRjyxYHYFZ
feedback-screenshot.debug.min.jssha384-cHCAc0mSH3QNsPguipJx93gW0etTVZnMZdwKsPY+bHc/No0CbXdavlJLxKEDUs47
feedback-screenshot.jssha384-UA/zVFgj2psY/PBwQ+DX2tERFemyMj/IA08yzCDZA435li9KjR8264/znkMa+zwq
feedback-screenshot.min.jssha384-E2RBKJAMX2w2JsN15z36dTuzq7ZauAH63mVXTmPoV+ZdURfy9XSMPD1JOrt5p16M
feedback.debug.min.jssha384-eZZGUw+OBjS/pr/Rkb+oKK6cUo6Ek/HIYTrUgSAqQpjl7lseMYX9qn4qIetKo2+d
feedback.jssha384-ZgIaseEj+1661ciN6DeAxiXI8lkSZmMjvbpnXS0U9lpToGsdArvppLU9zEm6BQY3
feedback.min.jssha384-Y5KOwU9DBg8MIgQXs5aap1f2VKsxYGUu7PZoVOyGvQIbm3L5aTRXDO31D4i1EPXL
httpclient.debug.min.jssha384-BsrXDAS07Yz+MaIZHa703S1qhQzMhA1B1NshJJf0WnHuB113VOAzyzv0xm5opBPe
httpclient.jssha384-vGgaugzsj4Bw7mboVXtxkqPvwrAJI5d5eTFWqz2AKLpyxP9JgJVn90BDHvMEGnkZ
httpclient.min.jssha384-IygjoSJFubUZz33mTb0HI2vd2hjEFrdY+ufrazGCYHg7vq68hKDJiB2h15KyHrMD
modulemetadata.debug.min.jssha384-Gc5QonluN3H8uRD+Mw+cvKcisBOhPP/77EtGDTE4RqpVBhyn0zJJ6QXmWlCRm8iT
modulemetadata.jssha384-hIVKgXnjCuJ3pJoTZbDDbnSHN/LUoDVwJyDY2NYb+AgKa//TyteNa0oHHC+GyZpv
modulemetadata.min.jssha384-i1e6lJFNTdyo12rTYcRnE44Hncu5/S0v/66vhMVtaNMIdpAxF4cXmzagOg5FxfIR
multiplexedtransport.debug.min.jssha384-FSuN6cRFObSZPTxGqZvOlbR3QQ8oTMyjU91HkfHaiQjGnvVPahm4IAKr+ToFo/jh
multiplexedtransport.jssha384-bDmIZYkln4/GHahtP1HzbodQtPzGwGKAOUtYO2We2k884tNUIBn5TgxQD+vkk+mn
multiplexedtransport.min.jssha384-aBDDTmXMd68ji1uSVlMY5OQXW7lr/obpkJ4IA9Jr6ovLtZ0pmt0rtTWHvx6ZasfT
replay-canvas.debug.min.jssha384-ZTJJ19KkmfpyD6CJWcwjZ0oxKzwO+WqmsfMtXgylpPjy6DMpV7cuDYZe7vubNk/7
replay-canvas.jssha384-KuZ/JNgir8QUSidVB+4D6hA5MsrErvi9Q+UMywn0s4yVkFT3wCy3MOSRMCXgHKCZ
replay-canvas.min.jssha384-ItP2DAVqHhocqvtyjw0k25nr/KJuw7t6SI1e3rp2EQXpRV+UIjweKacC55BjMayP
replay.debug.min.jssha384-76l7vIB1e+opOYYsoyUKbtn+2MpQt00jaZUQQ8/FKnRDzYD/okknVdjxe5VEfOO/
replay.jssha384-e+A0cefQOxu0N3g/R7dH6Jas3oAi87Zo8Vc2TWxcgKj2orkr2UHJF3KQ4/sM+tzu
replay.min.jssha384-CEHlTL+m3oTOJ+P2tsT+juzfE4PoNk7qVFLxgiAM5FeQwL3lTpvpetyb1WQVatcC
reportingobserver.debug.min.jssha384-eiRXrTDpnDJApp1eI8qKyCGRBXIJxdfa3mW4K/X5j8c69MgJG/e+YE/4hB3jKo5D
reportingobserver.jssha384-gGosBIqVMlqZ6uRUZemoWDYRRB6Xr5at2Mc929uKWH9LICwNHFKcvsLKrPQIMTXv
reportingobserver.min.jssha384-QCmy//ngPyEGnvxyb9Pm6/D91dMh2JMnA/UgskMC99De+CWRKRejDVJkpURDS9X+
rewriteframes.debug.min.jssha384-aMhSCmOXv8HyeyyVpgQS1WsGXKubmz8TNU5UMISG87S5oz38G8/5xsdPVKaS4+Th
rewriteframes.jssha384-6E5TPLtHbboFATpYXOGHnaYgi10gkkvHU/iGiZC4HqPNdw9KxnWPP2p0dJmqteTu
rewriteframes.min.jssha384-b/BOjzBwa6mEoSQGHJG/2wK+DUcxpbgEyki9G06O8iBrfKgKdjxSyRfqvFKEI3xk
sessiontiming.debug.min.jssha384-tyXw2CIY0tcu9uA46gdI52M2jZ0r40x2dFQ2vyhpS3c08NuVAzlG3FPtgVTLwsnl
sessiontiming.jssha384-PY/thdc1lEnr2WRiBJ/UugbmBZ9hyQvVLYAp2XbLpIJiggNIk+vCTTmX/CvZnCae
sessiontiming.min.jssha384-C++1qL2vU3lbYLxU6COf+eaaMTr7ySRvcRF65zj/7aem8UTbpwfz+Efq3nILmen5

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