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.45.1/bundle.tracing.min.js"
  integrity="sha384-2GD26ZskBFEyyoAzs1kngurCDBcOcgXLhKfCK3W9FV6obvPhafTBTObTkN1ngHJN"
  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.45.1/bundle.tracing.replay.min.js"
  integrity="sha384-2WoWHcNQKgFx4XblwX1Yh9qk6jdMcTN4vpH3RWM/Wt36K+xwszQXgw0kwLo86sb2"
  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.45.1/bundle.replay.min.js"
  integrity="sha384-1E6+179n2Vnx6IQtTxucjn56KeFJLtDualqoNliyEUo7F/E/BbisTQ/NKDfL3T5T"
  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.45.1/bundle.min.js"
  integrity="sha384-btQdAzzFgZJ2ssPYuttYgxa/y0oPB67mTACBJu8Z0Dallqht3QDHN20wG9h9kPtT"
  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-bt+Zg5KUmgLX+9mu4cYji3Rcym73sUQdtkPL7lmUvP+wwdwjYWkxUhVaplX5hHaJ
browserprofiling.jssha384-tq0I8LrI5pXzxS48l/QJsRWy7QlDjl3UPEFlXYQVFKHK8sxZNV6gm5bWFKL1A62o
browserprofiling.min.jssha384-SxCcTO81MCF+ngL46Mr1QlCP4z1VsChwKhjQJ+0jpxwTkXSuJEanRlM0YhdUSshl
bundle.debug.min.jssha384-BxRdUf51lZ6DPE05+E7SHhMbSgKoXmPBC0ZRCcItNezLhTk7YWDnz8ofY1KKe7AX
bundle.feedback.debug.min.jssha384-6iIFKi/dDfJb3WF6OcXxZW/Dw2qznrXXY/NX9znojOWwwabKdNwAC/ubM8n4b4oc
bundle.feedback.jssha384-wBuNdlnY6l5uvsyxTvpe5RgKr+TyaOlKQPZF97LwyOkvZtzhxuXRcM8b4Sx2PqOu
bundle.feedback.min.jssha384-kRMYGFcslPNdLVVaEZePhqmgV7QD1SKJHcKBHGKLRxAwfmpnGIMBhJQFhAMTfZgG
bundle.jssha384-c0j+ro+wKlvQOMsf98DHrZYFPXvmzUNQujI67cOgyFNcZpl0FITGgCG8qKmB5o3v
bundle.min.jssha384-btQdAzzFgZJ2ssPYuttYgxa/y0oPB67mTACBJu8Z0Dallqht3QDHN20wG9h9kPtT
bundle.replay.debug.min.jssha384-LV1cuFAJBZFOLQrh1jCYH0A4HWvnDkYueNSpi9BaPz3EfFc1im/XHEMkSbGQQi3h
bundle.replay.jssha384-mVLx059w1knR1uDDngMNGteDeTUhTMvFKfLCFtBP7JbvjTqu4HCOt6Z7vZVNRuMa
bundle.replay.min.jssha384-1E6+179n2Vnx6IQtTxucjn56KeFJLtDualqoNliyEUo7F/E/BbisTQ/NKDfL3T5T
bundle.tracing.debug.min.jssha384-lChIj+u39HS6FzKz/j1bQZkeHTR0WF8Kkf/jJOxXahtmntS8rVx0T/oET8+zKpbM
bundle.tracing.jssha384-NPaAMiwk+oPT+ZI/pidRA9HD/e/jhxaiTe1+ybuVjV/XQcmllNNM0PGVkUkiu/Z1
bundle.tracing.min.jssha384-2GD26ZskBFEyyoAzs1kngurCDBcOcgXLhKfCK3W9FV6obvPhafTBTObTkN1ngHJN
bundle.tracing.replay.debug.min.jssha384-TtTfEjcxFa31zjAiIenWYNlGUo5uWpAoAsDCNdk5+TZV5PD0OPWAFAOHet+KsHiO
bundle.tracing.replay.feedback.debug.min.jssha384-/n1+DP2j+4GfkEgE8SuvRfxBuEIWf519THqt/oq4s7/8ioGVtrridnyIF5VjcE89
bundle.tracing.replay.feedback.jssha384-fl2z7A/iLRMr/NfRTin4YMIblhG366/MHp8Ni0/4zN/r9Fl7wCyOjowARUamz6iI
bundle.tracing.replay.feedback.min.jssha384-yR9o/DJJHDiBYuhtux1IHW2cjATZg3Q0BY5UxD6YDPtclNOIUFFmUrSIvBgzE/bi
bundle.tracing.replay.jssha384-Cgge8SaUwVHg5WaeJtQ6BNh7cOf/FnqF7ovnatoZZ42wCgU8Hxt4/NxcHTG+Rdap
bundle.tracing.replay.min.jssha384-2WoWHcNQKgFx4XblwX1Yh9qk6jdMcTN4vpH3RWM/Wt36K+xwszQXgw0kwLo86sb2
captureconsole.debug.min.jssha384-NkEE/L0X4cByNAufpYIx3k+Ug+FaFUTrP77PYsTLD3wgoJZ24GVHs6pRBfQXrjwO
captureconsole.jssha384-+qoMxrjNjZ57jWzclvQCYu0ZTX6/nx+TJeFZmqLLjin2hWpevpBobLO3UXbDAVYj
captureconsole.min.jssha384-mhepr9+GkEQCmc5PgUxAwpyigZwbUGSejQaSwFHoBHiJJNtzJLFzfL02PPLyd4AS
contextlines.debug.min.jssha384-5JjNJh46MCU1qGuNUWImyfFahb1h3LcushepCx+VgpbU0P7fa4jr8UPw9uKt83w6
contextlines.jssha384-eu7pV0MwcBcl3THEboiQ6TFJO/nxKkPVriW+sSN0rl0DzgbFEWoP8boxR14lSw6f
contextlines.min.jssha384-ErvDi885WPeYX1G8Q98ImUvTfs2izIqTaM3UDmBgyEFa3zq8HA3HrFByG0pi3Tji
debug.debug.min.jssha384-OGYSJq/LlRDfJol0xZPTX8VajULzsOD+3Dkc/ckmqgGUFgYo57tzM5fWDPrA7xIX
debug.jssha384-fihkDwkghEP/+ZVvTNgQVYIuegNX2p8nEYoj047DfXfP6NVlq4muaQAB4RRxYlvD
debug.min.jssha384-bRlukWheMwjn4GuhaMvprcxU8XUxBgc/QA/gDqyuVc0h11UXsuxt/u7HvjgGG7qT
dedupe.debug.min.jssha384-M7AKZZ5eBWXhP1vL7Rot46/94NF0UQpI/WkAEHbLubMVnrDwfxhPW2xdoeOLeJs5
dedupe.jssha384-Koo93Ru5+j3NfQeC8wOtw3M5xR8mdHBb2EVg+OoAlWpujCpds71VMbP9Ly3WVF0R
dedupe.min.jssha384-zxSlN2VXFy6x6vN25QjoS2DeZyGLQxSW1UQm1CgEGBsZ01uUvefEdfmUw8pLgtV1
extraerrordata.debug.min.jssha384-CbE9zuCi5sr8VHsDaD8shDBqiVXjkSFHemsxGbwkPtBhFOZcD39HiPGa6IcT/LNL
extraerrordata.jssha384-eZBxlaxhI7nqF+n6ACl1qXg2fQaI79JeKri6+jQlIuavkYZ7U8tf85oLBw7FqTj2
extraerrordata.min.jssha384-hf0DfN3tL64yU5GrGEmlShkyVAtMT8JX/P+9uJTxSVxB8fJewX+OkPl9zh1F0p5h
feedback-modal.debug.min.jssha384-pwws7FMpd+T5ea/7UqrGq0iDIyOYAXP+KVWvq5ouAAXBWoGX4OYGcpXT5yiH6P7B
feedback-modal.jssha384-wBOa89+hd0y4aOWohjMiKVpj/leRzcGjXkHsR/2T4S+nv6HLfokiHo7po8DE6+Xc
feedback-modal.min.jssha384-8YuOV/qOKVhGnJrPW9QXUs70ZIlzoL1rsSszgMK4vuhDtNPNjpWTqQv6p5wDPb/p
feedback-screenshot.debug.min.jssha384-HToF0LXxD1El1p9QIJp8Vjan3lblRYt5paTReMDV0sIbbzCGK4QeYS4NRyyXc7O4
feedback-screenshot.jssha384-KKBdVDOtKO19IvCZep+OwqOuGbkpAzhnKgj8GAidYuiY6itB6wQLeYt3fDIpsRIk
feedback-screenshot.min.jssha384-KgmSiqrXllJ/zRsX02eY8fvpnQgi2Q8AXfh1mIMBMiYaheJBDiURIKHDsMfUzubR
feedback.debug.min.jssha384-/YOYrgk8ly5L5vgtUqWsdfdAjyO9KiqzgiYa04X1bBr7ifmluNOZqULR3em2dVON
feedback.jssha384-fC1Xl7mo2aZ9DtMW83sU6NUNdiifWTViStrpqbpKJWBNOR1kbUaaanC3LDgx4pCU
feedback.min.jssha384-o2t6NToX8aZZdNB1ypqY8fZk3QCfo3d84Xj8vUaiiOcn8TsoXobmDBe5FwrZR6L/
httpclient.debug.min.jssha384-iddqGJZrGwf17YYjwY2qzIboxOXZ7N1ruoS5ZqZPFDZN6qm3Ay6SXE9HUwf+/bCV
httpclient.jssha384-ULlD/rLCv+TR3e2GgxU6na/h+RkOAnCWLckLu8Nkl/3NSancz/cVFE6q0n5InLFG
httpclient.min.jssha384-Kx7zyHh14aAQBrR1J8Cz96FodDxi1Bsi2G7PfcCWyky1cbstBNnEePBfKr5/UMeS
modulemetadata.debug.min.jssha384-cjuKuG6YpV0/81tD9aljMY3KVK7GXvtNP32g/oMSTzjhCQVN7jQnXyzD2UG/g8e+
modulemetadata.jssha384-VwHVtRdXDMJKdmsq09bhVz/XiEVfk29aRBhD3mGqaE0inouSi3MRS8ROhU+a8dDq
modulemetadata.min.jssha384-NS4KNVv2ES7uUM3dldD4vecjZSRpvifXDZXIR5cnU6qgXvlLXCDWNR/476pCVFST
replay-canvas.debug.min.jssha384-A2dHCW6DNwZhTknvA867aD1Gaan/qSw3BcIaudLs2QgvpwDcC4aQHqiPq1v88ZRl
replay-canvas.jssha384-8B70+VQHWCEU/ML8LcqqhLRMFuc1sZkp0t156goDK7G8vw9dvPNVnkwU7aLACL2m
replay-canvas.min.jssha384-XdMegNwpgtKdaoYWHz9UBSoiLbUcCVkrI51iyk2eDSTjiE5rX649Q0jQ8cFqRFHu
replay.debug.min.jssha384-o8fskvuoFjp+GWOw7BhrBBjB4xLsZo8Q6Xxq8Di2zMd4recg3d491DUmx6Dx9XQq
replay.jssha384-2nyZu2Ci20tctWFqwiipJjTmM6RyK9+61gd/5QtgyfqgYPS+C9CKewI7Eyx8neEb
replay.min.jssha384-CImys4OH1ZNsE4PLcHCUkyUPyrTW2yimE3uMz107hIhTvNpzgs9OASi/XnfzQumI
reportingobserver.debug.min.jssha384-XWtrr/WaZNpQX0uSi8irtir7atu/91LOnkqolkCbFcjzX53h2MLtOWVW3JkAXm1y
reportingobserver.jssha384-Q63jooR+TNTu7KPIWiOYz7MFTM2ZTiDBKy2PhYuGZWCIqopbVKZH2ai5eegh693r
reportingobserver.min.jssha384-qJyqk57Yb+TCKvmR44tsexQqVDDVN5HDm2rTKt7eGMsOboGhVEuJGrPmWo95VRbU
rewriteframes.debug.min.jssha384-ZarV1k8Uwt5lXp7Igszy2y/4H2Q9WKhG+ibhTLWsykTOnnJ8P1nRf3VFqas/zuz6
rewriteframes.jssha384-KS0pSX1yfSfrSoCHjndbdb5KBotOOnyEYxyvqckZsaEwXg1w+HpZg3NPdiFgWrbT
rewriteframes.min.jssha384-FyDzjg6TLdHIMvw3lYWoDB4zBQ9AA+72MslMLoQIUMFXFl7GlP+mk5rT3PvStb/z
sessiontiming.debug.min.jssha384-SG8qrs5J9q0+XPjq/p8ickSlfTHFi+dT/5DKl/cplilQe/QiQnpBso7eR6ylHlk5
sessiontiming.jssha384-fg8xeRrY6vWcV6vK7HY6t5cWOBKLyJa1R/Gskx+BbLcn2OLZzkeK60kLp3WoaW7u
sessiontiming.min.jssha384-9dZLJ5XDDmjMsKWYdnCvz9XkgSRuWPAtbPRPpmEwa+qYnN/4eU0EMuPQTnfROwbf

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