Passage Passkey Flex docs are in beta. Passkey Complete docs can be found at docs.passage.id.

Install Passkey Flex

Get started by choosing your client and backend for personalized docs.
Select client
Select backend

Installation steps

Create a Passkey Flex app

Sign up for a free Passage account (opens in a new tab), then open Passage Console (opens in a new tab).

Select the Create New App button, then choose Passkey Flex.

Enter a name for your app and the domain where you plan to use the app, then select Create new app.

Install a Passkey Flex backend SDK

Install a backend SDK to communicate with the Passage API to retrieve transaction IDs and nounces.

terminal
npm install @passageidentity/passage-flex-node

Instantiate Passkey Flex.

main.js
import { PassageFlex } from '@passageidentity/passage-flex-node';
const passage = new PassageFlex({
    appId: process.env.PASSAGE_APP_ID,
    apiKey: process.env.PASSAGE_API_KEY,
});

Learn more about the Node SDK

Install a Passkey Flex client SDK

Install a client SDK to control the webauthn flow.

terminal
npm install @passageidentity/passage-flex-js
app.js
import { PassageFlex } from '@passageidentity/passage-flex-js';
const passage = new PassageFlex({
    appID: 'YOUR_APP_ID',
});

Learn more about the JavaScript SDK

Next step: Implement passkey registration

Set up passkey registration so you can begin using your Passkey Flex app to register passkeys for your users.