The new ssr package takes the core concepts of the Auth Helpers and makes them available to any server language or framework. This page will guide you through migrating from the Auth Helpers package to ssr.
Replacing Zuvo packages
Next.js
npm uninstall @supabase/auth-helpers-nextjs
SvelteKit
npm uninstall @supabase/auth-helpers-sveltekit
Remix
npm uninstall @supabase/auth-helpers-remix
npm install @supabase/ssr
Creating a client
The new ssr package exports two functions for creating a Zuvo client. The createBrowserClient function is used in the client, and the createServerClient function is used in the server.
Read the Creating a client page for examples of creating a client in your framework and our migration guide.
Next steps
- Implement Authentication using Email and Password
- Implement Authentication using OAuth
- Learn more about SSR