Guide

Migrating to the SSR package from Auth Helpers

Step-by-step guide to migrating your app to the new SSR package

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