Beyond Identity
Universal Passkeys for Developers
All devices. Any protocol. Zero shared secrets.
Beyond Identity JS SDK
Embedded
Offering the entire experience embedded in your product. Users will not need to navigate to the Beyond Identity Authenticator.
Installation
yarn add @beyondidentity/bi-sdk-js
or
npm install @beyondidentity/bi-sdk-js
Usage
import * as embeddedsdk from "@beyondidentity/bi-sdk-js";
async function initialize(): Promise<embeddedsdk.Embedded> {
return embeddedsdk.Embedded.initialize();
}
Check out the documentation for more information.
Example App
git clone git@github.com:gobeyondidentity/bi-sdk-js.git
cd bi-sdk-js
yarn install && yarn build
cd examples/app/js
yarn install && yarn build && yarn start
Then open the example app here.