Installation
This guide will help you integrate the azakaw Web SDK into your web application.
Overview
The Azakaw web SDK allows you to add customer onboarding in your web application using web components. It provides you with a custom element that encapsulates the functionality of the customer onboarding.
Installation
Install the package using npm:
npm install @azakawcompliance/azakaw-web-sdk
Important Note
The web components are registered on the web page itself, so it is necessary that the library is imported on your website before using it in your code.
Basic Setup
Import the package in your main JavaScript file:
import '@azakawcompliance/azakaw-web-sdk/dist/main.js';
Then use the customer onboarding element in your HTML:
<az-customer-onboarding
session-id="your-session-id"
host-origin="http://localhost:4200"
></az-customer-onboarding>
Installation
Next Steps
After installation, proceed to:
- Framework Integration - Learn how to use with React and Angular
- Usage Guide - Learn how to use the SDK
- API Reference - Full API documentation
- Examples - See implementation samples