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) > SDK Setup > Loader Script. Copy the script tag 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 disabled.

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
  • Enabling SDK debugging

To configure the version, use the dropdown in the "Loader Script" settings, directly beneath the script tag you copied earlier.

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
<script>
  window.sentryOnLoad = function () {
    Sentry.init({
      // ...
    });
  };
</script>

<script
  src="https://js.sentry-cdn.com/examplePublicKey.min.js"
  crossorigin="anonymous"
></script>

<script>
  // 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
    });
</script>

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.

Because the loader script injects the actual SDK asynchronously to keep your pageload performance high, the SDK's tracing functionality is only available once the SDK is loaded and initialized. This means that if you e.g. have fetch calls right at the beginning of your application, they might not be traced. If this is a critical issue for you, you have two options to ensure that all your fetch calls are traced:

  • Initialize the SDK in window.sentryOnLoad as described in Custom Configuration. Then make your fetch call in the Sentry.onload callback.
    Example
    Copied
    <script>
      window.sentryOnLoad = function () {
        Sentry.init({
          // ...
        });
      };
    </script>
    
    <script
      src="https://js.sentry-cdn.com/examplePublicKey.min.js"
      crossorigin="anonymous"
    ></script>
    
    <script>
      Sentry.onLoad(function () {
        fetch("/api/users");
      });
    </script>
    
  • Use the CDN bundles instead of the Loader Script. This will ensure that the SDK is loaded synchronously, and that all your fetch calls are traced.

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 all Sentry features, including error monitoring, tracing, Session Replay, and User Feedback, you can use the following bundle:

Copied
<script
  src="https://browser.sentry-cdn.com/10.8.0/bundle.tracing.replay.feedback.min.js"
  integrity="sha384-Yy2UXIFrWRfe56w1BuJ8/pgltHwWyYP4Q7dYKueJ/c6RG8B/bPJmGv+TBTQSuTSv"
  crossorigin="anonymous"
></script>

To use Sentry for error and tracing, you can use the following bundle:

Copied
<script
  src="https://browser.sentry-cdn.com/10.8.0/bundle.tracing.min.js"
  integrity="sha384-TR8N680qOm0pCmrHg2oG0fjpZYcpLanuLrMZck1DTR0NnaJjnqAPuCPI7pMJRmFp"
  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/10.8.0/bundle.tracing.replay.min.js"
  integrity="sha384-o9UXGQbKb76G6UNZasN50E5922I6aQx9CSzbN02knpjeqhcgl2Vi8SAlCUEqIa+0"
  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/10.8.0/bundle.replay.min.js"
  integrity="sha384-1GmBZYPjprz8SnHRHngR1vD+kITPuIuD2nPPHl66G7GTcwvrO18vK9IR5BsYRung"
  crossorigin="anonymous"
></script>

If you only use Sentry for error monitoring, you can use the following bundle:

Copied
<script
  src="https://browser.sentry-cdn.com/10.8.0/bundle.min.js"
  integrity="sha384-OeXjkPMDAnxIgoEIBDnXWKhce+ctYZHJjn+VcfoEzUIV/YPFgf5sPIMT6Fr68nfq"
  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
example-org / example-project
"
,
// 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:

  • bundle.<modifiers>.js is @sentry/browser with error monitoring only
  • bundle.tracing.<modifiers>.js is @sentry/browser with error and tracing
  • bundle.replay.<modifiers>.js is @sentry/browser with error and session replay
  • bundle.feedback.<modifiers>.js is @sentry/browser with error and user feedback
  • bundle.tracing.replay.<modifiers>.js is @sentry/browser with error, tracing and session replay
  • bundle.tracing.replay.feedback.<modifiers>.js is @sentry/browser with error, tracing, session replay and user feedback

Additionally, each of the integrations in @sentry/integrations is available as a bundle named <integration-name>.<modifiers>.js.

Since v8 of the SDK, the bundles are ES6 by default. If you need ES5 support, make sure to add a polyfill for ES5 features yourself. Alternatively, you can use the v7 bundles and 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)
  • bundle.tracing.debug.min.js is @sentry/browser with tracing enabled, minified, with sdk debug logging included
FileIntegrity Checksum
browserprofiling.debug.min.jssha384-7P9nqKdDpbaV83zsncSNNm1sde0SDPlbMumgLVF3L1aXIj7A0W3GYIlJwcczQmuz
browserprofiling.jssha384-4WEfkoVc1+uYoFn6b6Mv8I/ZBMwNpykCf+kI+AkXM/wovojtrBXjdEuX4++Ha1Cg
browserprofiling.min.jssha384-Df0wQC1MCw1RIto7Pnh+VyucH+jhO+MLp84tLjad+QMqiKyvA3q4pkF8UL0NZnau
bundle.debug.min.jssha384-ZntcuLLyg4Pg6BYDRPoMukGmi5UfWuXZYeVdMeyVeNfWLtbLwQ6AajVqxD/UNA2T
bundle.feedback.debug.min.jssha384-XeivExtwg5l9UZPmItLyMipN8xfTcizgfTrJTADHuC3Dnl1SL2ett0LrLZopCz4g
bundle.feedback.jssha384-DqXSaIepgZlDTWhO3p2cCdB25WIrFZliKhy1OHuLGip4GmXL3mT38+iUbkJguKxY
bundle.feedback.min.jssha384-8DFGhASGB8B3lesP01N92l9LNiaoSNVNZtUeMi/Kd3RChB5bjn593wkg8EGu6iM/
bundle.jssha384-b/YgaM5vugWe8aKgzOpSUsCE5dGa8PcU6Prffdo/sEy/ErvgYbwC96SW01Vu++gJ
bundle.min.jssha384-hC4vL5cQalSzubJ7JYiyowACZ+RFb6/SRza4iuxGF14ABwAJgRDrtXi5+i18S/4I
bundle.replay.debug.min.jssha384-mQwh4yKRf3wYpDVqknx8pSiswnnuJKk349VrOlU3TcEmxikoOB92OYFcqmDxExI+
bundle.replay.feedback.debug.min.jssha384-6G7EV5Q2W2IBxm1C4CERGZMdI/TVgQikluI1EsP09Wf8QL4Fyj6mICxu/VaiPs1w
bundle.replay.feedback.jssha384-bDneAQ2Nk+xJ0H/H/5nh/brSddc3JLbbaqRr75OIUMj60YhSUITsgl7yklixyaJz
bundle.replay.feedback.min.jssha384-VShq1iJglbKtXxtwQkT90xS4RlhLdZ5dcLSeuPhtVJiBQzjOhwKghaV9xpCo2pfB
bundle.replay.jssha384-YdBu7v64fHvfjobHWIwd7sZ95rW+EefIcHfMcehKVULPIrqKi7Sob+O8taS2/Pcs
bundle.replay.min.jssha384-dizFSaEf5bIQro7pmx/S7FFPfGBc0GJg32vV8VQfLYZxmjl0pqPf1e8VKoTBVpd+
bundle.tracing.debug.min.jssha384-au+9YkcZYqThW6QbDUcWG5N2GerT1VgsX36aDecMdnWeI5XhIAbNg7azoJ9f/X+K
bundle.tracing.jssha384-+XWZg6ctIryNQ+qEoyooKKmiF5O7tDjgOm3rpQExOujFIy2+vODl3Dkb+AW/dqfR
bundle.tracing.min.jssha384-B/8XjD0IgFmjEQpqe63GyNo1MTQZ5/7uS+4gxsl2sfc/RtGUpPhq42/2doTSH3DT
bundle.tracing.replay.debug.min.jssha384-4huVAQmCnAZZMUR4SDcPW2WhUP3ima7tjbb3BgTZhByqeLTKIdHjei/GL7MAyG0N
bundle.tracing.replay.feedback.debug.min.jssha384-oYelMvqg6vy/RMG7qyTaeKXkJlGHexC1caunNajr+/1vF51kApLNpzTeISYkwbdR
bundle.tracing.replay.feedback.jssha384-KBcMK85Si/n/5k8HWYsA0jTh6UXWz+lt8niZzzESjjxmItesusTLYKk5dU84CPO/
bundle.tracing.replay.feedback.min.jssha384-fcITXvgVEzw5Wk6asJq3rdbOzt2VMwzHkpx4q8qyKl6WGNHVH/AAZNIX1Q9dnZuL
bundle.tracing.replay.jssha384-Xny0HRvoMmS0+por2YZDYn0ZI0KBYSMmNOesSs7lxoDufOD6HhnNqWMkJsU1Y0PF
bundle.tracing.replay.min.jssha384-u3UbZBKZXqkmQRpBgpX9QRdFqdd/XaaSRArV1Ruy4VVUZ5Wkzv/lth+kjKyjmbI9
captureconsole.debug.min.jssha384-QcrtjVvScu2UxRPHtTZSZqPlhqi8KlieqlwYDCGcndHVoLyhTWsGrYwJAm1ghDdQ
captureconsole.jssha384-bFUGJNPKnjohPiXkRnowvZyUw7lJxPaMY0ASuhUzRb7K72+RF+xAnM1LnUzH29/J
captureconsole.min.jssha384-oVJZ519atadtuf8hlR99Cm4rtDklD9VnuWavjeLLZxvPc68vYqVwe827tQmnut70
contextlines.debug.min.jssha384-xzyoYB4obq4+32/ug3vwZ900pPboYxRhZ9YLoMaNM2sidu4XIJB+WSwt5NT1XXrY
contextlines.jssha384-Ah8AAIzBmRfavULwCQChi5l+q2Gli7tD9pOVW1vD4c5xW/nN9skIemVgE0SpH5fd
contextlines.min.jssha384-AsRJauuJHqmy29J5pnMA57AbbG+GXwd2VMdzv2ZA90DfL/WjQRMwyLcq4PpnuJ0r
dedupe.debug.min.jssha384-t3SJaWMxK3//aCXcdoI1ku4FmYK6v5y+kYo5uFMqYWZ6kE2X2O7FTol7bxEgAOZ2
dedupe.jssha384-3a86dFhNxJAhuF53dTSx2/P4CDR+tmHU+UVbBMC6uSQNjU3706zERWZJ4X8OVo7T
dedupe.min.jssha384-e64HHvvzTPlxwgnl2WwSVjcQfN4GJRgtsWbp11EkFyOdWRq+tXqfTT7xcIHvzt+r
extraerrordata.debug.min.jssha384-y69yNXu2q8vJSNZGtJo6nBeCmi5hGSfpFh7erKweZWcMSQTfWWKLp+P3ZoYkSAsH
extraerrordata.jssha384-6kn54NlYLt7Wffos4GabIb59v9DCB8JMx0u4kakZ4OgiRjAE9bEdjwmoRb+Xgbqn
extraerrordata.min.jssha384-Gjkf68QWNjDd3AuQCVF4XUmaCz+YWOnNHWS+S2mhXQuCnHEivpx/NjiOkkXQfTBh
feedback-modal.debug.min.jssha384-dpHcjKdA3UKX2zXNJmec2/pA2TmKaKGP49xVJIf+14sT+p81WtKce8VlMr14irjH
feedback-modal.jssha384-GfMuHFwKNiTc6Why24ztvwEuZxW2dAiypEemiqjzk3Tm9EnefpIOEVFaKc51ifE8
feedback-modal.min.jssha384-Ir1G0PVIHtCiz1wm/AZARU0p/rQjgNguY/NyMkjaMCYdpRGR3GJX+ftQyqEgeEBZ
feedback-screenshot.debug.min.jssha384-hd1SMIjzGPyUoKYEaQpcvN77hNFM9E4ZOzPTd5BwXO5kA5Zpm887XyRObjU46+n6
feedback-screenshot.jssha384-2QZbrvdOAicse3PW70bBoa8WQrLxUz5uHREnlaGFyg5foyilct1b2hmUx5zRcKfL
feedback-screenshot.min.jssha384-ZnRminPgJce9ZJP3V3bHqHkP0eCzsGypP1KBiCq4WyJsW0HgwH8JQDHpKuAwagM1
feedback.debug.min.jssha384-NGVVvXR+dh3sJT9FqD1IqtwxRBGkIxbc6W6ucv0zTWx8HXy8YbWW8S6SehZ6gXRm
feedback.jssha384-77ZnmyDI0fz26X3br/H6mJXgjtOj8rJUAZSTfFKnAdCBirx5rekl7v6qznjDu0As
feedback.min.jssha384-uBc/pnPHR3aAjqx8Yxee+IiloXpB9LByvksxzo3LmZStM2LDRLON61Z4rrdDWnN9
graphqlclient.debug.min.jssha384-VOMMUvu0SAkCNEQVc55iudGo1esni4hdKn9izgsC/oy5CwiZgGvzAdkjI2RQE+cf
graphqlclient.jssha384-SP48CJyabnign8JDjhniJsO8Kjosxtm2AC/SN4vrW+HmVFClPtWSN9Yu/sM3Lhn2
graphqlclient.min.jssha384-0uN1mGhWZjZbOc0XznI/8iH+E91lkzf41l1i3H7INmeIfgYI8Jmf/PxflQSk5K4U
httpclient.debug.min.jssha384-EW+ZTLGzth+SnlUDPa3xfhialKyyHE7ArOjuzAMoQCCInHSCmXGhJFlS+sGt9WhN
httpclient.jssha384-MgwcoKzBf9+ZKzwm2kGvWk7/fPWmIEfcW+7FtGhrWutTnrErNrH5gHVf/i6pMqF7
httpclient.min.jssha384-CXd6Wz0wr7PZNs+bAN8N3xftIIyu82knfKSMAuHNq+A7eTOvV22HblTd1kwG3ACh
modulemetadata.debug.min.jssha384-PMwhp1QUXF12SHYaLaNk5vgYE5OiT6ljuEvuOqGnTee49mFmyxSjfH1oAZ5YZ0p0
modulemetadata.jssha384-EX+utWU4E3TPDDNcx7KZjzVe2LZu3SJBMZ4dp3PWNFWxC3Pb3NZDjBG8HbybQaql
modulemetadata.min.jssha384-/D+52kDU2NN2vQWqdWA0VE0e+qNEuiOAIk/+FKuVKv78Tgl4ltKqje+2mBsPqGrL
multiplexedtransport.debug.min.jssha384-/TuK3QOroeTHtvgvJaPUXH/4bhfrrtFvoTEVTwzhIhQkaYngH/IDg6fAvfZx+pMO
multiplexedtransport.jssha384-W7iZYE/evhb40jfEd5EYcXkW6Ah1LKMHsL5neL4JQ4UQLk8GHzt2xLoNygQ0BcaB
multiplexedtransport.min.jssha384-bBRE33r8hTj2PW+I6Zo8VkxJhP90VbZiRIyJHpX8j6q8tKzvLEyup0O3hhwxolBx
replay-canvas.debug.min.jssha384-0sC7eOPYRwhrvhUqBkXX2s8Ut0vQw7KgKoQBuwszWd8kt3oB82mO0XD6aXUoJa8P
replay-canvas.jssha384-znEw5j42CUKiHSL+Blr0aiV0dWJC6258fVswqNNONSjMzDESyOXuya9Zne65vEng
replay-canvas.min.jssha384-TZwsc2MTxcYi2r016QFLB3HUMUdXTvN8n4pBb3/1F8yA7A+OoT/jsANI5YQFSgAX
replay.debug.min.jssha384-fk48B3iPMwcxewb5QPFTx7MpLYTljy8fd91f6EbUOpOXCbJ4imVlPMVVtFAjqB17
replay.jssha384-CIoClM1elgCe47XItM0Biurf8DEwn+UQCbldGLxQoKu8JeqmcKRNCHJb0LrcdCMf
replay.min.jssha384-DtRDv3dRTZx0IU3vBlMf05viD0nXfrVK7x8Z1vFlDciE3i3WUN0zaKGCDXFgGVI1
reportingobserver.debug.min.jssha384-zQAIctodwtG1qWjvvhr3AX3fcg1c69NX4PrjVDxJ+HpzAQKduUjarXnxYQfDPJ4L
reportingobserver.jssha384-ypj+9jdnK5Ozx0pCz27Z9VqlKQ14qwpw7nDFxRfr53z2DFfOE6t9w23X28w+XXbF
reportingobserver.min.jssha384-pacF0fJDbrBlrxIpJ7ZWToncCSBScFC+HIkqx+wGK84RCNPAlLoA9vrQyAnqpODk
rewriteframes.debug.min.jssha384-IMrkbk/HzeDQ86pJ94HfeCUnHuUBELcZRwjKwF3HD1JsrJ8QhWNybfEIOXOAZjB1
rewriteframes.jssha384-oTIgjC7TUewPNb+tV636W0McvHCftRT1wJyiuWkDdrti0kHBuP+IYlJNktoT1jHn
rewriteframes.min.jssha384-M5qvTactR/wtlq0fafBKaUCWkKnET+Eny53oVe+QznnSVdhHJrNXaWCSxz73s9bR
spotlight.debug.min.jssha384-TVb1C0UkPGtnRN1sZz2tK6/IXIo4gyDx4DiiTv01eeLBubz9deEzCFDaSoQB4NKB
spotlight.jssha384-P58M2T3d50XsDbCKIv2oh54BBftvieAFh27iCO9Vo/dcEYPFFKpALvMdjxFXAGeW
spotlight.min.jssha384-xsYvvhppNPU4eBnfG2wd3ISuv6NOyKsAHPlizPog+O9n81rFJrm3COW6S5OT9x93

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