Comment on Show HN: I open-sourced my Go and Next B2B SaaS Starter (deploy anywhere, MIT)Comments−sallveburrpi8moThanks for sharing!One question though: What made you avoid lock-in via platforms like supabase but then choose to be locked in on the AuthN/Z side with a proprietary solution?−moh_quzOP8moFair question. The difference for me: Supabase lock-in is deep (their Postgres extensions, auth hooks, edge functions all intertwined).Stytch lock-in is shallow (just an API behind a ~200 line adapter).If I swap Stytch for Ory or Auth0, I rewrite one file. The rest of the app doesn't know the difference.−sallveburrpi8moFair, that makes sense!
Comments
Thanks for sharing!
One question though: What made you avoid lock-in via platforms like supabase but then choose to be locked in on the AuthN/Z side with a proprietary solution?
Fair question. The difference for me: Supabase lock-in is deep (their Postgres extensions, auth hooks, edge functions all intertwined).
Stytch lock-in is shallow (just an API behind a ~200 line adapter).
If I swap Stytch for Ory or Auth0, I rewrite one file. The rest of the app doesn't know the difference.
Fair, that makes sense!