fpwhisper-id
v2.0.2
Published
Simple browser fpwhisper script
Readme
Installation
npm install fpwhishper-idConnect via CDN
<script src="https://unpkg.com/fpwhisper-id" defer></script>
<script>
window.addEventListener('DOMContentLoaded', () => {
const sdk = new FpWhishperSDK();
sdk.init();
});
</script><script>
const script = document.createElement('script');
script.src = 'https://unpkg.com/fpwhisper-id';
script.onload = () => {
const sdk = new FpWhishperSDK();
sdk.init();
sdk.generateDI();
};
document.head.appendChild(script);
</script>Usage via npm
import { FpWhishperSDK } from 'fpwhisper-id';
const sdk = new FpWhishperSDK();
sdk.init();
sdk.generateDI();Settings
import { FpWhishperSDK } from 'fpwhisper-id';
const sdk = new FpWhishperSDK();
// Change storageDeviceKey
sdk.storageDeviceKey = 'someKey';
sdk.init();