Passkey Authenticationin 30 Minutes
Experience gold-standard passkey authentication on Cloudflare's edge infrastructure. Try our interactive demo to see how simple and secure passwordless authentication can be.
Why Choose HelioRim?
Built for developers who need enterprise-grade security without the complexity
Security First
WebAuthn Level 2 compliance with hardware-backed security keys and biometric authentication
Edge Performance
Sub-5ms token verification running on Cloudflare's global edge network
Global Scale
Zero-latency authentication from 300+ edge locations worldwide
30-Min Setup
Complete passkey integration with just a few lines of code
Interactive Demo
See passkey authentication in action with real WebAuthn flows
Register with Passkey
Create a new account using your device's built-in authenticator
Secure Login
Authenticate instantly with biometrics or security keys
Account Recovery
Split-key recovery without compromising security
Agent-Ready Access
Connect delegated agents through the dedicated MCP worker instead of sharing raw admin or developer credentials.
Remote MCP Endpoint
{
"mcpServers": {
"heliorim": {
"url": "undefined"
}
}
}Advanced WebAuthn Features
Explore cutting-edge WebAuthn L3 capabilities
largeBlob Storage
Store encrypted settings and backup data directly in your passkey. Up to 2KB of credential-scoped storage for offline capabilities.
Try largeBlob DemoPRF Key Derivation
Derive cryptographic keys from your passkey for client-side encryption. Enable zero-knowledge architectures with deterministic key generation.
Try PRF DemoIntegration Made Simple
Get started with just a few lines of code
import { createAuth } from '@heliorim/sdk';
const auth = await createAuth({
domain: window.location.hostname,
apiEndpoint: 'https://auth-api.heliorim.dev',
environment: 'production'
});
// Register with passkey
const registration = await auth.register({
email: 'user@example.com',
displayName: 'User Name'
});
// Login with passkey
const session = await auth.authenticate({
email: 'user@example.com'
});
// That's it! 🎉