Passkey authentication made plain and simple.

Add passkeys to your web app in a few lines of code.

import { PlainKey } from "@plainkey/browser"

const plainKey = new PlainKey("YOUR_PROJECT_ID")
const { data, error } = await plainKey.authenticate()

// See the docs for in-depth frontend and backend code.