> For the complete documentation index, see [llms.txt](https://docs.elkyc.com/home/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.elkyc.com/home/integration/installation.md).

# Installation

## Import library to your web application

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

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

Or you can install it via npm:

```bash
npm install --save @allpass/web-sdk
```

And then import it in your code:

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