What's New ๐
Welcome to the latest Passkeyme features! We're constantly improving the developer experience and adding new capabilities.
๐ React SDK - Just Released!โ
Our brand new React SDK provides the easiest way to add authentication to React applications with inline components.
New Components Available:โ
PasskeymeAuthPanel
๐จโ
Complete authentication panel with built-in UI for both passkeys and OAuth providers.
import { PasskeymeAuthPanel } from '@passkeyme/react-auth';
<PasskeymeAuthPanel
providers={['google', 'github']}
onSuccess={(user, method) => console.log('Authenticated:', user)}
theme={{}}
/>
PasskeymeOAuthButton
๐โ
Individual OAuth provider buttons for custom layouts.
import { PasskeymeOAuthButton } from '@passkeyme/react-auth';
<PasskeymeOAuthButton
provider="google"
onSuccess={(user) => setUser(user)}
/>
PasskeymeButton
โกโ
Streamlined passkey authentication button.
import { PasskeymeButton } from '@passkeyme/react-auth';
<PasskeymeButton
onSuccess={(user) => handleLogin(user)}
>
๐ Login with Passkey
</PasskeymeButton>
Key React SDK Features:โ
- ๐ฏ TypeScript First - Full type safety out of the box
- ๐จ Themeable - Object-based theming with full customization
- ๐ State Management - Built-in loading, error, and success states
- ๐ฑ Responsive - Mobile-optimized components
- ๐ ๏ธ Developer Experience - Hot reloading, clear error messages, debug mode
๐ JavaScript/TypeScript SDK - Just Released!โ
Framework-agnostic SDK for Vue, Angular, Svelte, and vanilla JavaScript applications.
import { PasskeymeAuth } from '@passkeyme/auth';
const auth = new PasskeymeAuth({
appId: 'your-app-id',
});
// Simple authentication
const user = await auth.signIn();
Key JavaScript SDK Features:โ
- ๐ Framework Agnostic - Works with any JavaScript framework
- ๐ Security First - Secure token management and validation
- ๐ฆ Lightweight - Minimal bundle size impact
- ๐ ๏ธ Promise-Based - Modern async/await API
๐ Enhanced Hosted Auth Pages - Recently Improved!โ
Our hosted authentication pages now offer even more customization and better user experience.
What's New in Hosted Auth:โ
- ๐จ Enhanced Branding - Custom logos, colors, and styling
- ๐ฑ Mobile Optimization - Improved mobile authentication flow
- ๐ Better OAuth Flow - Streamlined provider selection
- โก Performance - Faster page loads and authentication
- ๐ก๏ธ Security - Enhanced security headers and validation
Hosted Auth Benefits:โ
- ๐ Zero Maintenance - We handle updates and security
- ๐ฏ Instant Setup - Just redirect users to our auth pages
- ๐ Enterprise Security - Bank-grade security infrastructure
- ๐ Analytics - Built-in authentication analytics
๐ Choose Your Integration Approachโ
๐จ Inline Components (Recommended for React)โ
Perfect for React applications wanting full control over the user experience.
Best for:
- React applications
- Custom user interfaces
- Advanced theming requirements
- Seamless user experience
<PasskeymeAuthPanel appId="your-app-id" onSuccess={handleLogin} />
๐ JavaScript SDK (Recommended for Other Frameworks)โ
Ideal for Vue, Angular, Svelte, or vanilla JavaScript applications.
Best for:
- Non-React frameworks
- Custom authentication flows
- Programmatic control
- Existing UI components
const user = await auth.signIn({ provider: 'google' });
๐ Hosted Auth Pages (Simplest Setup)โ
Zero-maintenance hosted pages for rapid deployment.
Best for:
- MVP development
- Simple applications
- Teams without UI/UX resources
- Quick prototypes
window.location.href = 'https://auth.passkeyme.com/oauth/google/authorize?app_id=your-app-id';
๐ ๏ธ Developer Experience Improvementsโ
๐ Enhanced Documentationโ
- ๐ฏ Framework-Specific Guides - Tailored examples for React, Vue, Angular
- ๐ง Migration Guides - Easy upgrade paths from other auth providers
- ๐จ Interactive Examples - Live code demos you can modify
- ๐ Troubleshooting - Common issues and solutions
๐ง Developer Toolsโ
- ๐ Debug Mode - Detailed logging for development
- ๐งช Testing Utilities - Mock authentication for testing
- ๐ฆ TypeScript - Full type definitions for all APIs
- โก Hot Reloading - Instant updates during development
๐ What's Coming Nextโ
Q3 2025 Roadmap:โ
- ๐ Passkey Management - User-facing passkey management UI
- ๐ฑ React Native SDK - Native mobile components
- ๐ฏ Advanced Analytics - Detailed authentication insights
- ๐ Internationalization - Multi-language support
Q4 2025 Preview:โ
- ๐ข Enterprise Features - SSO, SCIM, and advanced admin controls
- ๐ง Visual Auth Builder - No-code authentication flow designer
- ๐ Advanced Reporting - Custom authentication reports
- ๐จ Theme Marketplace - Pre-built authentication themes
๐ Get Started Todayโ
Ready to try the new features? Choose your path:
React Developersโ
npm install @passkeyme/react-auth
Other Frameworksโ
npm install @passkeyme/auth
Hosted Authโ
No installation required - just configure your app settings. โ Hosted Auth Setup
๐ Feedback & Supportโ
Have questions about the new features? We'd love to hear from you!
- ๐ฌ Community Discord - Chat with other developers
- ๐ง Email Support - Direct technical support
- ๐ Documentation - Comprehensive guides and API reference
- ๐ GitHub Issues - Report bugs or request features
Last updated: August 2025