CDN Links - hellosign/hellosign-embedded GitHub Wiki

⚠️ Note: This article is intended for HelloSign Embedded v2. If you are using an older version of HelloSign Embedded, please refer to the documentation on our website.


Table of Contents

Disclaimer

By using a remote CDN, it cannot always be guaranteed that the HelloSign Embedded library will be available. To mitigate risk, we strongly suggest you install our npm package, download HelloSign Embedded manually, or compile from source on your own.

Note: Subresource integrity (SRI) validation is not available on our CDN at this time.

CDN Links

HelloSign Embedded is also available over HelloSign's global CDN (powered by CloudFront).

  • Development (Unminified)
    <script src="https://cdn.hellosign.com/public/js/embedded/v2.11.1/embedded.development.js"></script>

    The version above is only meant for development, and is not suitable for production. A minified and optimized production version of HelloSign Embedded is available at:

  • Production (Minified)
    <script src="https://cdn.hellosign.com/public/js/embedded/v2.11.1/embedded.production.min.js"></script>

Usage

The CDN version of HelloSign Embedded is wrapped in a UMD (Universal Module Definition). It is compatible with all major module loaders (e.g., RequireJS), but as a fallback it will attach itself to the Window:

const client = new window.HelloSign({
  clientId: 'Your client ID'
});

// ...

client.open(signUrl);
⚠️ **GitHub.com Fallback** ⚠️