For the complete documentation index, see llms.txt. This page is also available as Markdown.

Installation

Import library to your web application

Start by adding the minified code to your webpage from the unpkg CDN in your HTML file:

<script
 type="text/javascript"
 src="https://unpkg.com/@allpass/web-sdk"
></script>

Or you can install it via npm:

npm install --save @allpass/web-sdk

And then import it in your code:

import Allpass from '@allpass/web-sdk';

Last updated