Wrap your app, render sign-in, and ship. The three-line integration carries the secure defaults with it.
One component boundary and one ready-made screen. The CLI handles the rest.
// wrap once, render anywhere import { AuthOwlProvider, SignIn } from '@authowl/react' export default function Page() { return ( <AuthOwlProvider publishableKey={'pk_live_...'} apiUrl={'https://authowl.dev'} locale="auto"> <SignIn showBadge /> </AuthOwlProvider> ) }
$ npx authowl init ✓ Detected Next.js (app router) ✓ Created project nile-commerce ✓ Wrote .env.local AUTHOWL_PUBLISHABLE_KEY ✓ <AuthOwlProvider> wired in app/layout.tsx Ready - npm run dev
First-party clients for the web and mobile, plus backend verifiers that share one security contract and one set of error codes.
@authowl/core
Framework-neutral browser client, typed actions, sessions, and tokens.
Open guide -> React@authowl/react
Provider, hooks, and ready-made authentication components.
Open guide -> Next.js@authowl/next
App Router server helpers and optional redirect middleware.
Open guide -> Convex@authowl/convex
A drop-in provider that supplies AuthOwl JWTs to Convex.
Open guide ->@authowl/react-native
Native provider, managed screens, hooks, and explicit secure storage.
Open guide -> Expo@authowl/expo
React Native SDK plus a ready-to-use Expo SecureStore adapter.
Open guide -> Flutterauthowl
Flutter provider, localized widgets, and secure session management.
Open guide ->@authowl/core/server
Generated, server-only Admin API client for secret-key operations.
Open guide -> Gogithub.com/mstfash/authowl-sdk/sdks/go
Dependency-free JWT authorization and signed-webhook verification.
Open guide -> Pythonauthowl
JWT authorization, webhooks, and FastAPI, Django, and Flask helpers.
Open guide -> PHPauthowl/authowl
JWT authorization and webhook verification with no runtime packages.
Open guide -> Rustauthowl
Pure-Rust JWT authorization and signed-webhook verification.
Open guide ->Clear examples, complete contracts, and no missing middle.