We strongly advise that any third party Javascript Libraries like JQuery or CSS Frameworks are loaded from cdnjs as we have added a special rule in our caching logical to provide preferential caching for this URL. All libraries at that URL will be loaded from cache before going over the network. That means that as long as your code has loaded at least once on a particular device it will thereafter load from the cache making your code work when the Device's Internet is offline.

If you'd like to have the same icons as TelemetryTV you can use the Font Awesome library on cdnjs.com for all your icons.

Please check the Get Started section in README.md for more information.

Import ESM from CDN

ESM is recommended for better performance.

<!-- ESM format -->
<script type="module">
  import { nextPage } from 'unpkg.com/@telemetrytv/sdk/index.js'

  nextPage()
</script>

Import UMD Format from CDN

<!-- UMD format -->
<script src="unpkg.com/@telemetrytv/sdk/index.umd.cjs"></script>
// Go to next page
TelemetryTvSdk.nextPage()