Migrating to the SSR package from Auth Helpers
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 Supabase packages
1npm uninstall @supabase/auth-helpers-nextjs1npm install @supabase/ssrCreating a client
The new ssr package exports two functions for creating a Supabase 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