Skip to content

CDN Links

Nathan Buchar edited this page Jul 18, 2023 · 59 revisions

⚠️ 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);

Welcome!

Below you will find links to the API documentation, frequently asked questions, and other useful tidbits.


Find something incorrect or missing? Shoot us an email or create an issue.

Having trouble? Let us know!

Clone this wiki locally