antler-sdk
v1.0.0
Published
Antler Protocol SDK - Proof of Presence, not Identity
Downloads
17
Maintainers
Readme
@antler/sdk
Antler is a high-performance, real-time proof-of-presence protocol. Proves presence, not identity.
Installation
npm install @antler/sdkUsage
import { Antler } from "@antler/sdk";
const antler = new Antler({
verifierUrl: "https://api.yourdomain.com/verify"
});
// 1. Initialize WASM
await antler.init();
// 2. Request Hardware Presence (Biometric)
await antler.verify();
// 3. Make Authenticated Requests
const response = await antler.fetch("/api/protected-resource");
const data = await response.json();Core Philosophy
Antler replaces long-lived tokens and passwords with ephemeral cryptographic proofs.
- No User Accounts: Verification is relative to a device/session.
- Short-Lived: Proofs are generated on-demand and expire quickly.
- Hardware-Backed: Uses WebAuthn for physical presence assertion.
API Documentation
See the full guide at Antler SDK Docs.
