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.52.0/bundle.tracing.min.js"
  integrity="sha384-/rtxG3mU8oPrhI2FwD1mMsO0irYuO4hhFtS++2bAub9fVOY4p/1R27EOVxOdTN9u"
  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.52.0/bundle.tracing.replay.min.js"
  integrity="sha384-+i/XEi21gai3nyE0Zj8FfKQbihqkxoA6YI17LwTpoB+oxVbrrDN1uxSStZ3sec0r"
  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.52.0/bundle.replay.min.js"
  integrity="sha384-G+aXrXRze3cMKkpXM/fOHaTxFwBmBOmJW/WIXmFsDWOdFurDaqARPBOIoI2rkoxB"
  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.52.0/bundle.min.js"
  integrity="sha384-cvnQCw/zyR7kg/ozAUz8s6OGQjihm6UMF7HjR60fvdT0O7iABOdYRATZHvB/App5"
  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-J37YRC5GgEmVSaoDZkcUYDhWA9CNPajrEC56TtEkWOyePX/dsrV4zIjdFn4nqCs7
browserprofiling.jssha384-6oRo7IKiID1Fi8LjiYrwp3gA3g4icQfLNKcyUv3dpqbQhcM0e/VHrC9p2mm7UY+t
browserprofiling.min.jssha384-SgH/vHmpWC9cp0NQfAkqwN5j/fx5GIB3OXIpo/lNtwYhHcsabhW0YjADrCa88cJ7
bundle.debug.min.jssha384-S6cf+MBl8dni/xbXqFgx30o8hnnOTxjqQ/hh1ZTEdJqBP0GMNxfkCi5irwrmR8FQ
bundle.feedback.debug.min.jssha384-yXelZ2nBPv+0LbJOvPQhNs1XimUF9ys9CchvV7WF3d0WghoNA9RqwwElqxEPV4Hn
bundle.feedback.jssha384-KRDUcbymigTA4ixVCbT5n3sMOI8T+A1oCkgBbTFI2GiWPmghBJnVvC7jlrAo7aUr
bundle.feedback.min.jssha384-5/n/oHvM2n58JnTwpvgrR7hMURgD5WI0w3TVbZZeacS5uc7hwry2IRq50LivbW10
bundle.jssha384-60vvwPXDyv8qAkG19mw7Aa2qCZ6VinyGfxTUHZA2DPNUw0TklEe3O8w2fC2aR9Ce
bundle.min.jssha384-cvnQCw/zyR7kg/ozAUz8s6OGQjihm6UMF7HjR60fvdT0O7iABOdYRATZHvB/App5
bundle.replay.debug.min.jssha384-/5Rbnb7paf6/R91XU/N2A76uql68EDkxKfdCZZlqaNK3nyXoT5l06nmk1WKyNNh6
bundle.replay.jssha384-+5fnnHeosnOqoFNGtoxJEKX1OwCLDXGgRPwunLSwjide79aN9T2/ziaMcg5xtcit
bundle.replay.min.jssha384-G+aXrXRze3cMKkpXM/fOHaTxFwBmBOmJW/WIXmFsDWOdFurDaqARPBOIoI2rkoxB
bundle.tracing.debug.min.jssha384-/GmtLDiQ7RCOvE13n/nQvwpAXWWDrqmFO0CdOInay5hHY7Ot6pa1WpD3/X2b1P1Y
bundle.tracing.jssha384-sqyEctRlMaVBFrFQmS26D7wj4Ym30BNV2op1pqrqXOB69HsjXCxl34LO2LD2ZgBw
bundle.tracing.min.jssha384-/rtxG3mU8oPrhI2FwD1mMsO0irYuO4hhFtS++2bAub9fVOY4p/1R27EOVxOdTN9u
bundle.tracing.replay.debug.min.jssha384-5BO3hovrdE2FWsthRLkN0fcjDoQF9ebWj3KW6OJq9MWRroL7PqxaAXHuzoF5V2yW
bundle.tracing.replay.feedback.debug.min.jssha384-bO340aMakGqUXSQn2HMRzhXskczPP8JxwsIkSIeUWF9N4C/vWy5byAt9nqUyaN2d
bundle.tracing.replay.feedback.jssha384-pGH4WbWkNXkuchTxMT/y9h3eII02kARu4cKNmvPbX04wj2ziMFlJwNydIyQvCz/D
bundle.tracing.replay.feedback.min.jssha384-BvpwTXUc6fT2smNg0lXWjPd+VBCp3UAQHVq20u3eH3JBf+PaNxsihgwsbYECcSVH
bundle.tracing.replay.jssha384-d3/unz7S/8BwvhPLwDLm3noNbJxpjK7e1aw3PREZF0/zjhMPB+nwdwzxsUoN0wpQ
bundle.tracing.replay.min.jssha384-+i/XEi21gai3nyE0Zj8FfKQbihqkxoA6YI17LwTpoB+oxVbrrDN1uxSStZ3sec0r
captureconsole.debug.min.jssha384-vQaEz9buBgshD1FY18B6/10Tk20e1kXRjwTpbDdMFA3BQq/GP5ZO8OtGC/XK0nlN
captureconsole.jssha384-GETypywAFX7cMcdKrcY2HlISyPzTHQ2u5JF6nQkMM0D8kiQVikUlT83mWzzdh8Y7
captureconsole.min.jssha384-p4GpgmWVJW36IND4zOHaKbcFLKraxitwA7vbZgu8P2PYVuq1cHmvEJ56tH+ddooa
contextlines.debug.min.jssha384-H/GksNHn2C3bsVkqHgdxx0C2eUvVmr9fMSNhv4nWjnmyLbfW90RMYkH8a8ssn//1
contextlines.jssha384-4wJf3KgOFR+MB4DnIFMUq/siz8fLZX0c0qnJLVl5KX27jtw1Qz2plgDIn+B4CKDL
contextlines.min.jssha384-7YqXZGXY4lgAJRZ4Y1tTAP5mnesYOK/okXkUbMv483rEix3P3kZ0Q+iNaSojC5D7
debug.debug.min.jssha384-j4EtffpO+pauHi9kiBpGxshydWpDB4TZP56IGiE1NLXO9B1VFUaEFcJRa3AHfDh5
debug.jssha384-7wmzxlkaM2xoWWFJldxHV0wM8kTZg4n05/PvRFu0RmdwtBSlVD5aBYLEuX7qpmb1
debug.min.jssha384-OsmNGdgrRdBjxO6puQ+PQJSDj+9qZsiEHGEfCl4QJB8HuWkO3I0/SM/na2LoaJpo
dedupe.debug.min.jssha384-4wjDW1kb8BRHawLqdjWx/5OrzicX7cKTv5+tJ6v0QU6l+4bK22eexmKhHrPuVIdL
dedupe.jssha384-fVH01hy6ER3MUkb8PjwIx+IbLt1PwW/e0Ty/qwLm+iOJs7S/D5SmEbicCmdk8sU0
dedupe.min.jssha384-WhSLkOXAc5M17+VVz00zuAN58iBJFLHTh/hMDf9BCbzlbSFroXRGFaAEDU8T/hAy
extraerrordata.debug.min.jssha384-OjCI/m/AY1AqMyotFoZua9GH5439ziChDsc/D41u4fXC6fW1WAl/pFPfJbW0RFXX
extraerrordata.jssha384-kl4qbutFahW7HIDLrmokKj0o9JNUcofQS+lWDu8YS+ApYozBl82x7GI7pq913ves
extraerrordata.min.jssha384-5Dw2XoHXEKgTlmS6hJsjWSyTKnR1qG0gNOUWgd/unBzzCFdptxKy5jNxznu4nbZa
feedback-modal.debug.min.jssha384-Sye7QYTxCMjSZF1sUEOgnnTxOF2GMQccOLfWfeZYYwOK7ZAqx5Pi5ed/yJ0fnqgW
feedback-modal.jssha384-eIASk+/DplJWTgRsV/DS3oIIv+EVUVK4HCnqXS7VUIIdvHK1fJFOS77Zn1Hk79Ft
feedback-modal.min.jssha384-kEgIWt/VgGXwXU5oTATcFZyLPZ2I8yW1JtcQnlQO+zGBNejM64zsRLo3EueTk0Xg
feedback-screenshot.debug.min.jssha384-paIDzP62tLBnFv/5yJeOH0LWAN7bWfZvI3rpDyQ35YOE/coCP5UpyJCGjAg3TRok
feedback-screenshot.jssha384-g+DkBybdMTJgtXvsSspQVCCw1mhic+QgWfeVJcIq5QXJN+p/Cj7ulWevqGt8qzj5
feedback-screenshot.min.jssha384-i0kpLysJtdEnFkIWMRXgLv1N5ZoiuZgYStTIB+0X34bAeXArc9Qdl89j+YS3T9FQ
feedback.debug.min.jssha384-xetbP+M/KDMu0TrrOrjLw9gYt6a5tUhNVaxkPQUUnjY9ft7Bf2nhKD73BKJemeeZ
feedback.jssha384-Zy+1BT4H51RvCB3ySlh79oDmUB95t7xQafScgf1DcCVCaDqGluUUwThSfqIFAWWx
feedback.min.jssha384-mROnBXyb72scEIlYNGxGcBjwgogm4SF05i0Ruy/25uCv6yWU1dUjN+jwk9t8OPPC
httpclient.debug.min.jssha384-X5XiN/uaIiJAPSS1oJDIj9+VuelRCZN1Ro38cObg9906dVHqtINhsDiDuyEOtbNd
httpclient.jssha384-bNc1fkB7bs4p5DRbXQRAiJ3taz81ML7tS9zIcUMBJhCNlic71IuG4i7om6YUWiP9
httpclient.min.jssha384-dp6bi6S3uBQG7kzLqtySCsZ4/kSKTEFCemA9wLlYZb6G48kTv546DpuxuwlB3ALA
modulemetadata.debug.min.jssha384-6YEJnze3hIbOYfNUvaTw51+ad1A1OYLXdtWOI3mOB2e2oefdBFmGJmkaikSg+uvl
modulemetadata.jssha384-sekCUCirlWalk3tBeBXMbWyp2YBtEGyCiZ4h27PDNomRTVBIRR5iZABAM4uYt4lW
modulemetadata.min.jssha384-5yB8pL45rwnQOoxbaWYVu0BfO66UWZquFx+EBHJ0CVVURAXixDnsPMMpGgN8qwqC
multiplexedtransport.debug.min.jssha384-bLWed69F6RK7m2mOeE7zfiRmPTxHpsP2QQsEYxFC1Cf3S5YH4lhcHcBS4gvnMkZ9
multiplexedtransport.jssha384-LImZEpwOLeUCu1c2ofQaC8j/3d9OB0Ht4tWLPgduajFte/uhgKSyaaA7FHCPmQOF
multiplexedtransport.min.jssha384-JqmHbjb4DYUUXYiCrhIhfqc+014nkIqAl6Jv8gx1YQEgIh4NS/eolYElSF92QNzF
replay-canvas.debug.min.jssha384-pp+/aISJCDwhSfU1GcyZ13WoNoXNZnttWXPpfLEhwPFTKfkp5BE1RYSWyGHqz5NF
replay-canvas.jssha384-fyBgtYA/3MH+PjT0u34BlLcpGh2YhpBw8yQVhusf7u+nMHrTzEnhVq6aZNGwsYH9
replay-canvas.min.jssha384-YEl8XYKFQA8FInKIFQGc2r80/Zs+RQUNJ6PdJYiSV9YpT0Rkw3iwCz3IpPTEzbO5
replay.debug.min.jssha384-/QYoSXvZJOjpCMXinh9bFcjfXMs50jsJFyqGeykNHaTkXOHEQKmjvceVHP8m7HEJ
replay.jssha384-g4tHLg8O4AfjIDUUa1PmeJIsZCKPlQbfTlJ0/sRNBF1kcT5BBnsPqvX1I4y0oZEK
replay.min.jssha384-J4mwgzf95oKDFXh+z4N9SDndTcMpsshDc9VAT+P44OHfUNPraJKpV6SOtAA2XjVe
reportingobserver.debug.min.jssha384-4CFIhHLkFRsSwQcpF3kJCHVhOP+2zN6/Z2OGFJ5G8XJ99Oc00HU3AxKTpCT1ezGF
reportingobserver.jssha384-8qYkGwKXoS4joLy0qne1aZAZeN/nY98QSXM2Rg1zwb2cDohN+mf/0vRx9e+6F8TM
reportingobserver.min.jssha384-nXFt1wGhq56GmJ6aFSdUyzx14yXkA9tc4GwXzQA6raWf9amtYyQ85MM9NpsUWQ39
rewriteframes.debug.min.jssha384-gTXT6slsd3HzCKOwHNx9exnMjUdM64NpfNTg7xXuRBcWxLRgAjf1bzSF6knsozRN
rewriteframes.jssha384-+2BlTvBNmuTD1yzGXZdFCoxL2sHtZffxLyzdBaiDqktZxTlaZ51N2pDzL0jR5uK/
rewriteframes.min.jssha384-1A95Clk/8mVnNXmGZLDl+DSHg5AjOUe/xLp0nX2dog5KWlF/ajAoeAo2cSv2NrfA
sessiontiming.debug.min.jssha384-vnZn27HGkO9HNReAUaTouygz2m0CDRDhPojkZpCzFdUSZOykZ6FJPLxEarF7HmNT
sessiontiming.jssha384-yAGZYE1GSC7YpbkxdP3/CSane37hA98Rb528T+Gb+8Z5avTPoeTKiLrejJlQ9GMN
sessiontiming.min.jssha384-EDxSOV2osPZLND21qh6Cqy/kCaZ3HItGq1NJ3Tby0Gs2DZGDUczXbtx3cdqMp4+J

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