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.41.0/bundle.tracing.min.js"
  integrity="sha384-BzUyMMqzlIQ0T6ceStYnX0Cj9rTW7iFF6ittqSclhrCrau9niz70Hog0TolR4oOR"
  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.41.0/bundle.tracing.replay.min.js"
  integrity="sha384-SaG2DgPHqJ9VCr+VE/34E634LUpD6HnNo1zWoRRQDoQmMKz3BYe3cTC70CnWi/OA"
  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.41.0/bundle.replay.min.js"
  integrity="sha384-ebn1sn6Guqnk3Y+sYg7rr9Zp5U1d0f/Zce+/JreUOo3mWmETm6mM8ey2BpJGaV07"
  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.41.0/bundle.min.js"
  integrity="sha384-mUJKQaDAe6V+lAHFG7ne9l/HztQqIwsu7O9THAIYc6AwxWyK2Y52CEN2guMXHRcy"
  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-5V3H3vGNjdpVpPit4V7cldO8RkhilnhGrpacVqf5NQb0y+OiZm1DAqqE29Y10vuP
browserprofiling.jssha384-14VgRpYJcEkKV5bnJ4Lr8gdsbDSgjNFIUQcIBXpVi6ZTqln774YeZ6PvrnFRXpyw
browserprofiling.min.jssha384-KDslzrAttXgn7DezTwNjmfWXOyxnbs+0SzfvdkpD9YCR3OggThnj6Dq8g/66dDsS
bundle.debug.min.jssha384-GM+SWCaVIZZhooT6LcSHJq00Bg2pZDax4oPOw80xbm5G+LESq8dfXeugS5bCaY8K
bundle.feedback.debug.min.jssha384-ig0zf9b5bHyps/KC7H+A3u1zN0bk3WgvpXoHUTyCdGRnO/MtybNbOVRtsYCy7Urd
bundle.feedback.jssha384-V0lsvnRIpoJHZ0/DFVC6bxYnpKDu3Tazv8766mJMEijgfrb5Vjo4lpL83uGX3JPS
bundle.feedback.min.jssha384-nNViy1NqFBl9W/4XsON9/2bvAd67c5tLhe97MSGhzlx/1EBJ8031+PiKjoc1YOsY
bundle.jssha384-x9W8th43q6/wx8RgXWWDGOFuWmDl1hJCe3PsGubF5cVKKF6Zl5dxB1AZw9kcGE3W
bundle.min.jssha384-mUJKQaDAe6V+lAHFG7ne9l/HztQqIwsu7O9THAIYc6AwxWyK2Y52CEN2guMXHRcy
bundle.replay.debug.min.jssha384-qn8stwkwvWvA/7lSvZS7bjCbkitzlaITVdalg7RFfTOZB6aL4hkMXyL0odGM8ZPP
bundle.replay.jssha384-lrwm/2+Yvwttcs07+fSjMiA/auiQbSXfX0KsyraoKJsr03o51m1KWG+nQD90KGYN
bundle.replay.min.jssha384-ebn1sn6Guqnk3Y+sYg7rr9Zp5U1d0f/Zce+/JreUOo3mWmETm6mM8ey2BpJGaV07
bundle.tracing.debug.min.jssha384-wYIXOBUhKV8ingXTd56Rd0wyTw0yVf618d7QgG94FjvrgZZtxqHDf1or7MYDOffd
bundle.tracing.jssha384-1opJ1YwzhIsBLi1ihWDrjkagpW0JvtRniVpbnOhe08Rn2l/MVOlWRCCQrX2GWSxD
bundle.tracing.min.jssha384-BzUyMMqzlIQ0T6ceStYnX0Cj9rTW7iFF6ittqSclhrCrau9niz70Hog0TolR4oOR
bundle.tracing.replay.debug.min.jssha384-rW6bXhXPcv+K/V4zmb/QkCbBkxOatooy+q/ryEXp/NLP7GLoQX3vjFz5enGf1PG3
bundle.tracing.replay.feedback.debug.min.jssha384-4A1AML1t56HpEIf9vqE2/hYjCCVxmbWbXztSr4vHOUW66hOKblf4OsM09noYk+X+
bundle.tracing.replay.feedback.jssha384-lVqsfHwnEE+HGBW/HxooxW8D9RPAo24bgPk07SI7y0qe3u4X/5kbAgHRLPku9ay+
bundle.tracing.replay.feedback.min.jssha384-6wzsgmcBwGsft5gAAFuWDLPvfFtLt1rRqsWsx4YxGA7a9YRCyHrnmpjpmzUQ32y0
bundle.tracing.replay.jssha384-aAOTta6CG5oHTTW+QgjanqwyxVjSOOk9cbXASyk3BqXluBU0OC+y4Lc5SNs2d0hY
bundle.tracing.replay.min.jssha384-SaG2DgPHqJ9VCr+VE/34E634LUpD6HnNo1zWoRRQDoQmMKz3BYe3cTC70CnWi/OA
captureconsole.debug.min.jssha384-R8E+lf5m5Z5r270PFXZ4bVaMNtocUaDq9aSlxpFBuDWgqFayK+D1DJ2d7OSJmCjk
captureconsole.jssha384-+bbAoCPWrxP3XqT4nHpaKOvhNz0SrvRYBfPIgDPGUs5TsN23cXa0m+ClNTyZf0ll
captureconsole.min.jssha384-yGqeOcdQYnVPwk7NziXiZGfbMCG1q1WMNQDKGcODJB1+RGso4ci8hgrUE3NVkfkO
contextlines.debug.min.jssha384-gtd8tsqWyjRF4NwAMpi7eFoWo2FytUBU/Ip9c3Hz0vORpNmyqQsJAnPU5chpQRyT
contextlines.jssha384-sM8u2AeoeeRVqiEaIrgrBzxR5/1bJpdpdpRFKb1ZPWd+E+rcWVL3PXvrl1Pz8IHT
contextlines.min.jssha384-YLbzDfBSTQhOg8BUGCCt1prJQXQrxpvEiUzywQti0cnXPOp3LLgyj5Aot9v3QiMl
debug.debug.min.jssha384-uuW4G4OREhO5QY4AYMGBA0OK1p0ZcMgdXcc5yUHUzBMMNZaD8GQXkv7BKp7Zr5W2
debug.jssha384-9BLk7PsG/WeVs8XBMEzVmaFeGUmo5nh787dXZPjD0EQy2ZjcRPANOPwpV4J7wk58
debug.min.jssha384-WYMtOeoOYV9IweGZsucLiL8fTpRC1RcFyNBekArLoXCNwYgNY/9B/OwBbh1FDIQv
dedupe.debug.min.jssha384-ITnCBiYzDL21fqDwDuPwyiuoGG8/IC7zya1IosafpvhfSOCNQl0vcYaa8sTqFcb8
dedupe.jssha384-2WlmUWXqrvQl8Sn0/CBhgogY+OCiLoxLTub0eVbVUOg1OrY+y2lXuQX/QIqclVes
dedupe.min.jssha384-FgwxOcnupvr2YfeGHhOgPEsqb4896d5BLF+8VBwkgIECG5ITIzOnXYlsYkH4QffT
extraerrordata.debug.min.jssha384-V6GvtgfZHUPDyy30cI0+/ixr70A4KooV/LfRvCFb3DnAP4vY2VWP8n/xxSh9B0ec
extraerrordata.jssha384-f/pIBivD3y9RqY8YW5/Iph37guQ5b6qEjpk943/O5ardpmyNXv9WXWkGZJkUT4i6
extraerrordata.min.jssha384-VneNf9IdxrM4urBmCu2gNU8vQCBXd00KZ88C9/p1RsEFvtU0/hyjnIe4DakiJwM4
feedback-modal.debug.min.jssha384-m2cU5C4Cs7gHdz+PrRGj93Fbe/TN5cSGk3J7vzgy6JxGAT3++FDOvTqArbQeLMCx
feedback-modal.jssha384-JJdsR1lOixmvUe6n9MohS0y8VzE4AlFSVdFLeJJb1MeWjHw3ONGPlgrGj/p52HYf
feedback-modal.min.jssha384-YEPIwZW0ZyGlP5bPFSlLFeezUAEo8QG835SU3yCRXvvh2kCSJzc+BZ7VfMKC94Gy
feedback-screenshot.debug.min.jssha384-nRMIp4e++9mjl0UqLheKs6Hn6RtB5VmxNRGaZMmktHUh1QyxB4HOTCP4R2MZbBlo
feedback-screenshot.jssha384-3s7pJTiR87zIzxk76SeEQJHhVEVoBmm4bksxttQrM9C4QqatX+SfS2heQslFX1Fp
feedback-screenshot.min.jssha384-sn8/yBzI+B4OeLwm6EX2F2/rX0IffdCk8y0WjO4/KN5zlgohJQVpIPbxJ7OihPpJ
feedback.debug.min.jssha384-NRn9SXCV0jg6S/FLH/Wn1SycqOPFnOX++LkaLFbOy3TF1l3c4E9aWvagY6fovX0j
feedback.jssha384-z/UXi4wBcFRbIBSAOAKHXlD9+3fGVze6ZOHiaXUADL6C7pugVSxF2F6dTOhs5u/g
feedback.min.jssha384-VOqlr2zzeh8A7c95EG8gSEwYcuZGppz3/v1qmaP0NvUbf94/a8TImfC32AWyfqLI
httpclient.debug.min.jssha384-Omr/ZyOVlYaCRZVe+VvmYgERb5LyGfXuZswE73jNKV7RvZLBxc+CHG2NFe8/PXiy
httpclient.jssha384-iMZRXGlUT1Qn5RsTW1+X4QjgfR8fgmIsEDb6m1RZf4S54gRkCxeaUY6YpCSw6s+U
httpclient.min.jssha384-WNrqRkDXw6HoTpnWM8L4TR6nrQTX5dFt9OBp4GGUmgCw1kMSP5u2TBBBfYBt4cf7
modulemetadata.debug.min.jssha384-9SqB9ZzjLHv3QRE2wg+JNSZ41onZyyyO5ascSD8TYn+PfzkVDrPQm+UB15eaBQn7
modulemetadata.jssha384-MFGwT2U8uQVhTK8/DcCSd9WOLhP1wj7pbhmIONtxGkcFRR8QbWynda7B78ZA+syG
modulemetadata.min.jssha384-C1Ef5sGrmlOGwXQlM3Yw1O8FNZCHGL/E4qNFe/p60pz10Z6lWz0b9Z59kroQ/FUz
replay-canvas.debug.min.jssha384-sTa+PYXFjhOOpU7sVQsSsGXUYoD7A4fhpnD5xwQ+grArtPuAR15URvkiBt+JdvtI
replay-canvas.jssha384-CzILk1UHocCdU8R2i4Bccc2rONTzOcCfwdKhafega+XNnd39i+M92mySghpJwKQp
replay-canvas.min.jssha384-a0rQ/YaBhFys3gfSY4KnaEs5g2ABGjmfzczxFH7m+BhaM5vNh0PtU+zUes+9OfAj
replay.debug.min.jssha384-v4MzaX+6qV+EfbGAldDNcc9zKeKD0djFxKisqaSGMbOYIuIhUV/AfKQdjAM0TlJJ
replay.jssha384-4ROLrjme66NLlG+KKV5QSl6TpUmx7r8xkds9cZ3/FXu2CZeTph3IEqV1fR5ibrmv
replay.min.jssha384-eq1/fpVY95XeG7sySDBPnUKOdjzaIJa6taj+IweWhUd+jK2n5IhuCC/A0/3fr5sg
reportingobserver.debug.min.jssha384-8Bty+bgYIkUnTaEZF4k4sLa1pRuXV0x1ed47TOXO7EPK8Cd6IdGX7t/pbqO6OprK
reportingobserver.jssha384-0HuQe8ambpS9H9zNytD8APufTOele89qdVgh4nRSSX+6pWMaQP5iF/eENtq6ohJe
reportingobserver.min.jssha384-FhtKgVdxR0Nej+1yR1eO/PoN7qpwV5d3GvCfZmUTKufu2ivXH30PlzB/edN/3Oqs
rewriteframes.debug.min.jssha384-YbBWl0drI8lVUF2wgQoNoUgTWRc9O0Nv7zN9U1lSJ7IvKXrB7uJWQ4DnpcS8OZjX
rewriteframes.jssha384-/qTSIhnz4uA1u/vgYGiBi1KR2YKF/l+5lmBz0pplUd+G6VVpyTKb5xpgqwh+8Jtd
rewriteframes.min.jssha384-XkccH3hDvhpT66cJrqqMeX0d7DTk8dQq6NBF+Bd1pJwXJ7fm2NvCAp71KBJV4Oin
sessiontiming.debug.min.jssha384-c92JueXWBQuQyVeJM9TdLmJJDu0fSgB2K5n/V+1Zzuprhfnm+RR+9o4x7xx/2QWT
sessiontiming.jssha384-z1Q3Q28xRlvZiFbtuk8sXQViwVhoaYplEjRMyGGdLAe1QHTrRLoicRc7hq88ntuV
sessiontiming.min.jssha384-UY6taHvLDt5JG/KhxJ0H2dNn4zPUjWxEkf67qV7VWPt5VWxwQH+9yZuLJJhz3sHN

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