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.16.1/bundle.tracing.min.js"
  integrity="sha384-EbQAJTWwBxLINZivLD1KFmKVZyYnPUBwFGbdFA2I7TCnGENec5/FfHUo1GMUH+RQ"
  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.16.1/bundle.tracing.replay.min.js"
  integrity="sha384-LD7Pk1Pd0iHIjc0ob7FQEUdS/HHQHaY37myve8825pul6riEQ3PiT1K/KY7S35pa"
  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.16.1/bundle.replay.min.js"
  integrity="sha384-kx/iH0m9uTbcKV9+tZvPCpR0mUj8YjUIhwZcQRnCF+c8ZPidkUr7ld4/qNMvxDq7"
  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.16.1/bundle.min.js"
  integrity="sha384-fqMhg4eq7zXNKe8MvDiMJhKy/SMtFJRXPz85sxnI4O+SWDI1tQVnNzMfWIRRI1AM"
  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-bWYKhq0KUZsdyGtYPGZ2hjxydqDk10p6HuqO0JIIyJfmScji3UG4TG4uarsO1iVZ
browserprofiling.jssha384-R/wrUwokqwbZsLhcVKYyD1RLJGgHwD9dh2tFAfN93ESTurvrjOANeIyDEwuXr8AO
browserprofiling.min.jssha384-uwWv+ctB01sCPZcNY0pSjybIRdpO0b7IQsbXS8ABMv4O0Q7ZAqafV1ZgGEDavOWi
bundle.debug.min.jssha384-LJyMQIs1AZ1pcrMQryfV6Jtn58GWfQFkl92Ekxf/XX6lc+4E5/xvsxJ/gmaF4Gra
bundle.feedback.debug.min.jssha384-a0E+b3myX6UmMN68aMGIox//Wxoj21d1GDZIkPvBxBW/PqMm7PdNtm1H3/v26G0I
bundle.feedback.jssha384-pPZbxXOXeBeb3hAAAGjzM9VJDo5N6+acNzfyU02Ro7P1s1SqZ57+7xv24VbiPap2
bundle.feedback.min.jssha384-wlK21cSbJsSfTcL/OEVe5uaDfay7pcPgpMitq4ML4W97vIom9lgRLg0viQhpvfmh
bundle.jssha384-6cAC5D5A/IKUpqOohuIl0Z7Yhdg8mW2vMLRao/QPUnrTEE7Z7lsWomWtBESHY/VU
bundle.min.jssha384-fqMhg4eq7zXNKe8MvDiMJhKy/SMtFJRXPz85sxnI4O+SWDI1tQVnNzMfWIRRI1AM
bundle.replay.debug.min.jssha384-Yk2rHzNNkaeg8Pu7b8RouwzddgyZI1eOwTBqJQWAFHsnsO72l23Xpe8Hp8oPk28F
bundle.replay.jssha384-BY97foQub/Hv+CVAJDmmWjGVSMMQAQoeyzlC6hnC3y7oaRqz2pNxLP6dF+ytYDdP
bundle.replay.min.jssha384-kx/iH0m9uTbcKV9+tZvPCpR0mUj8YjUIhwZcQRnCF+c8ZPidkUr7ld4/qNMvxDq7
bundle.tracing.debug.min.jssha384-UqgVkeVc+Cdm7s4xZk3Ee7FEwO1Ru0bYj6JoU8ptfFAUesfDnnf8s4cP/uQCKPfM
bundle.tracing.jssha384-p4ghdHbPDDyLy8lW1MAocq8n124mksmj0YZdyzhI7W059WVcCeMM4+2nz/bCnxYY
bundle.tracing.min.jssha384-EbQAJTWwBxLINZivLD1KFmKVZyYnPUBwFGbdFA2I7TCnGENec5/FfHUo1GMUH+RQ
bundle.tracing.replay.debug.min.jssha384-PCwnwJxI/Qq+tMdLVBdkADF6a0i0ywvEwTg1nxE03S9ee1dJHtVCgzRHcOMKOI4B
bundle.tracing.replay.feedback.debug.min.jssha384-jzDyBqpYW1hL8VlMJKIx52B/Ey9jtZ/U64NHJIJ68Yl9scX+KY9J4QkvPeypGYev
bundle.tracing.replay.feedback.jssha384-vIARBrt7/L3+NN7PX83F3dyU4bD4CAmfyv5S8MZN32Bk/mQST+/Abc2VkIcPNCeu
bundle.tracing.replay.feedback.min.jssha384-NFTb7KWZxxgKhGFQY4HL7/znFn6xZSRc9UvM/zChmf3pax+5aIVh6bbRHIulf+RZ
bundle.tracing.replay.jssha384-poqnhtOxG62b7fKR7lyD1ufygC2nEuyR2L6tlIjs8daRCO4K9qN5HTXE8qtsWzKL
bundle.tracing.replay.min.jssha384-LD7Pk1Pd0iHIjc0ob7FQEUdS/HHQHaY37myve8825pul6riEQ3PiT1K/KY7S35pa
captureconsole.debug.min.jssha384-DpxzWf0C/tI6AK4WYDwo/c1x91dOtK/a3FzY6FQym8K8VpBs5VmuOJSujeTR1kG4
captureconsole.jssha384-XZk4+Zl0Vmjr17rYXD/r9o0nt5XxYsTXSjpy0guB5R5sC1oigROTqzPPUpLetyFv
captureconsole.min.jssha384-sGb/nKsJJChQveEtb3cX1By9aJv5VlLLrEe/LnffWgBKpao3AVEKQ8SYbKJtxubK
contextlines.debug.min.jssha384-UKN9qFqe6wQ9s9Zi5WtT5cB/PA60TjCSik/KfrDFtLEAAwyC446R00u80vUsiADG
contextlines.jssha384-b6LMI6HcNC3j2N2J1oQr2RcKvZAg7Hea5oCuTS8hQlTVAY2gvARUy7ULE1xvEB+3
contextlines.min.jssha384-ucFoM4w/nlDsV2Nfffa7Fpw+f43UQhDqiarte3CzjRX9q3ET8sR4gfni6MB6aUr3
dedupe.debug.min.jssha384-dfOHvCRRHv9zXNA1hXZ5v8lX8WdS5Lp8XkfaLcpuDPHELD82Vyk5UbmwRFEzWvDZ
dedupe.jssha384-Zxi/tfHfdg3mJNUkBy0QmgWqtvpFm3RqqLhNW4LhDt6xasz6XaIolBD+ATcALHrD
dedupe.min.jssha384-IEjJtYGC918JN3v/RTHFq+Nx30StQgHJ27S9Q3WtlzhHpRc/0u1wO3ysqzsK4rCr
extraerrordata.debug.min.jssha384-drvTqmWYpogGTWAh20JpR9A+3YVKpvIe4saFr/2XIYlee/eEDNP4R0xqB5L9fTyh
extraerrordata.jssha384-GdLn/hT4jFSULW5p2ALsEquvSlTGL99aVv0E5z64JhIe/GZGDSCdmjW7/sOw0AUe
extraerrordata.min.jssha384-SOs7OZ0rJWt2bjb6uFIUkO5sWIm1KFsTcm4U8WGTygfMH3nExRvBGhvok3zbvE7V
feedback-modal.debug.min.jssha384-z2UyMlDgq7xi/jzlpCvUv1xKwXEcC0KhS6MgV2baXmuUhXTrQhoYkFs3G/9H43Sv
feedback-modal.jssha384-Mosibiq7oIMOUN9f/Vwv8P2AHNn1giXVRcXZAmp4giAITWRQK6O+NEss6FIv3+xi
feedback-modal.min.jssha384-fAoY1PCaBf5FA/FBMpU6tA0ICXOF/jeukhFWPmA1+i9icTx2Wq1g+YGGNVoDEDvF
feedback-screenshot.debug.min.jssha384-CoCyXIMpSP8bplRPBcXFj8n6vDBmyJgZgFYyhcY4TonYc3DNERuw6ZRGS9bnJ22K
feedback-screenshot.jssha384-IyJ0BHjIIUOSVJ/yDgHtei4MHYuDCHud83C1MgXfY9eQoFXTIS9V1qtEY5Ns3C52
feedback-screenshot.min.jssha384-gp2lne4Uz1+FzajpJRlMluEYYukkE6zTfW0oUNNaTV4SsoornninRETWmz048cLE
feedback.debug.min.jssha384-HeP8cweKIkT80RIGEDy9dESZgBTsqddCpNM3qCWrOFs9I/bTpz4G0pMu2zK+43L6
feedback.jssha384-Ss9C5nMYenhjQ9wN29rmTWKf5Z12G4K3r3DyWU0QIrla+1IMKRboi+LImA8SVJeu
feedback.min.jssha384-jMiAmNLH6pO0sY+JncSEubRY+XAVCGOQ8VYAKfHr7WgTa5KFxDk2Gqral4rQX6/S
graphqlclient.debug.min.jssha384-cnRXlin4o5S3HewujD8LkbghMlyRKVxSt1q4U5e8rX/s1zwatH044ngX+RXoNmL6
graphqlclient.jssha384-Xd8yTFu5zCqHdonuoNv7VUoyXdXEOlpvbkpDUvM8AaSWratD9LdESCAj/jlyNaUe
graphqlclient.min.jssha384-Q/aIkTqt/B5Vx6JR2jPf3u1dCfIHCmMFRudL4a1gAbtn31KSvLTTPHZUIBdQDfFX
httpclient.debug.min.jssha384-WnaWzY6ncapCfajdrVkuQCfOeHz8NdleIcj/o1Dp/5Evxb58hba92KFEZxqIdSXK
httpclient.jssha384-YUqA+tKeuKSY3YyKkRRA1i+OBOQADW5buPW7Yp5q4wRUp58v1NAnFIqYeGqEKgOp
httpclient.min.jssha384-9sPwO193y/iLlO1YzP1A8plgpNYsrrtbgS5OEcs2mhYN4i8zrhq9YHYH4TtAE4QC
modulemetadata.debug.min.jssha384-ECFg90VhDPF6iR5W7QvA7tpNOo/J0ACiTVt7hH3kBJR1WfX3Ajg2QFRIS2r8RDJ7
modulemetadata.jssha384-fQUz9QTny2m36FbBi2G3X6Hf04+oLaT0CKPq5+D0JcEregopLXQsBwnSY5WOgNdZ
modulemetadata.min.jssha384-2VT8kxfqfF4XwrdrBHY/mT1JfhOg2DxYaDutQFq5FC+0HfRJVxYIrCrhTkxbsQEd
multiplexedtransport.debug.min.jssha384-9vRWXESx9Bv/maACJsMwlXB7w30y/mrgG5tKuBdUtVwVETekkHdId4qV32fmxrIN
multiplexedtransport.jssha384-Bx+yl4Lkdspgs/jzm5i1s7GUaS5dScLuaw+JSKP+r9jk4LSNQqa1RflK3fL9Cmau
multiplexedtransport.min.jssha384-wPRsPkiXENyVupiCalono0lZU1xzsq7Z8CDUYYqyuFJNlKtgaCHllHug9V4mXe8Z
replay-canvas.debug.min.jssha384-Mr4c+KCeDlIjVukbw5b8+RmF1bxlA943iqShJVaMhiQHPCl6STLR0ALVtg+tdVA7
replay-canvas.jssha384-TMJK+1mMNW1Zg6eTs7tpBicBlPAO4IugbeEV2lF4dxzCrT8o/Kq4pGUjLIuK1gdD
replay-canvas.min.jssha384-SgxDCaT3EnIgNjLEC4suLMeLiunjUtZ8hDR1yTNUtexHtjhFWlv194duYRXcKAYk
replay.debug.min.jssha384-Z1F5tF0SjJHgvArFEOc4h7p6q5WghkeqlL84D6c0mg5dm8gNGHmBUyQfwkX5zYYM
replay.jssha384-xL/qEaShGB0Uhh8SIsUZy5Ty+E6IxIJlMWw7+/XCm7tbb4DTShbeHvVOZ5bKoVgw
replay.min.jssha384-/ELfHVcYSJF+O/RsUyCklrxZODnKRzE70AmbcJlT+gnW57HTwzJT/WdSFSv0EanG
reportingobserver.debug.min.jssha384-AsJANHgoytNBaxRKpFj3qk6jkwemQEyrDQ2XM94gUt2gW0j11HirioatOs54YRUA
reportingobserver.jssha384-rRuDRYB95d57VmJ+OPAx+waE1OrH+//9yUU4Ss5381n/vaJCpOL3UDh+weofueDo
reportingobserver.min.jssha384-SOBED2HmIO6j5rxKaKWrzCJQ52nXGQYNK7SeKz8Tpb2PWfVbpg7MhhKP5W8tYBJx
rewriteframes.debug.min.jssha384-lNy47j6r+peiz6J/QHmc2aShOHaTIFkiQmcff+g9ssJg3IZnYmMApE/UG/O87ngS
rewriteframes.jssha384-oaS/UFgN89RiiyglUAf73mWr9x4iz0LPBrZLCtvA2CfI9tctVgpB2/78BV9I+90L
rewriteframes.min.jssha384-F9WCogJGxHkY15J2xUzQ88wna+IpuyMHB9Etz+IyszO0gmk0O80inxbl7S5bvz8F
spotlight.debug.min.jssha384-QJXYqYFGysZNelE23Bj8xvsUoBhDNYiK/RHLi4QWkZ9eIPzcsl7Cko765ywfUYbi
spotlight.jssha384-n/bXx1NR7dICwquwFulvAESZnTODWe9MhBTC2mwjBvuljGLXDrDv7SQVDYJq2CXs
spotlight.min.jssha384-EE4pxeOYXUmMldX4klGQZZMWrFe4yav/pH0QaT0rILibjHVqunJd/k4e/UR7qtKc

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